// Some functions
function openCountryDialog(){

		var fileurl='http://www.eyemag.se/contact_dialog.php';

		if (document.all)
			var xMax = screen.width, yMax = screen.height-16;
		else
		{
			if (document.layers)
				var xMax = window.outerWidth, yMax = window.outerHeight;
			else
				var xMax = 1000, yMax=800;
		}
		var w = 720;
		var h = 350;
		var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;

		var pop = window.open(fileurl, 'Eyemag','width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',menubar=0,toolbar=0,status=no,resizable=no,scrollbars=no');

		//var pop = window.open(fileurl,'Eyemag','width='+w+',height='+h+', screenX=0,screenY=0,top=0,left=0,menubar=0,toolbar=0,status=no,resizable=no');
}