		function crazy_box(action)
		{
			if (action=="show")
			{
				$("#crazy_box").load("/crazyad.php");
				document.getElementById('crazy_box').style.display='block';
			}
			
			if (action=="close")
			{
				document.getElementById('crazy_box').style.display='none';
			}
		}
		
		function login_box(action)
		{
			if (action=="show")
			{
				document.getElementById('modal').style.display='block';
				document.getElementById('login_box').style.display='block';
				return;
			}
			
			if (action=="close")
			{
				document.getElementById('modal').style.display='none';
				document.getElementById('login_box').style.display='none';
				return;
			}
			
		}
		
		function crazy_center()
		{
			var x,y;
			if (self.innerHeight) // all except Explorer
			{
				x = self.innerWidth;
				y = self.innerHeight;
			}
			else if (document.documentElement && document.documentElement.clientHeight)
				// Explorer 6 Strict Mode
			{
				x = document.documentElement.clientWidth;
				y = document.documentElement.clientHeight;
			}
			else if (document.body) // other Explorers
			{
				x = document.body.clientWidth;
				y = document.body.clientHeight;
			}
			//alert(x+":"+y);
			login=document.getElementById('crazy_box');
			posx=Math.round((x-960)/2);
			posy=Math.round((y-280)/2);
			login.style.left=posx.toString()+"px";
			//login.style.top=posy.toString()+"px";
			login.style.top="125px";
		}
		
		function center()
		{
			var x,y;
			if (self.innerHeight) // all except Explorer
			{
				x = self.innerWidth;
				y = self.innerHeight;
			}
			else if (document.documentElement && document.documentElement.clientHeight)
				// Explorer 6 Strict Mode
			{
				x = document.documentElement.clientWidth;
				y = document.documentElement.clientHeight;
			}
			else if (document.body) // other Explorers
			{
				x = document.body.clientWidth;
				y = document.body.clientHeight;
			}
			//alert(x+":"+y);
			login=document.getElementById('login_box');
			posx=Math.round((x-500)/2);
			posy=Math.round((y-400)/2);
			login.style.left=posx.toString()+"px";
			login.style.top=posy.toString()+"px";
		}
		
		function center_name(nm)
		{
			var x,y;
			if (self.innerHeight) // all except Explorer
			{
				x = self.innerWidth;
				y = self.innerHeight;
			}
			else if (document.documentElement && document.documentElement.clientHeight)
				// Explorer 6 Strict Mode
			{
				x = document.documentElement.clientWidth;
				y = document.documentElement.clientHeight;
			}
			else if (document.body) // other Explorers
			{
				x = document.body.clientWidth;
				y = document.body.clientHeight;
			}
			//alert(x+":"+y);
			login=document.getElementById(nm);
			posx=Math.round((x-600)/2);
			posy=Math.round((y-400)/2);
			login.style.left=posx.toString()+"px";
			login.style.top=posy.toString()+"px";
		}
			
		function magazine(id)
		{
			//alert('bingo');
			$("#mhighlight").load("adserver/display.php","type=magazine_highlight&id="+id);
		}
		
		function bookseries(id)
		{	
			$("#bookseries").load("adserver/display.php","type=bookseries_highlight&id="+id);
		}
		
		function banner(zone,extra)
		{
			$("#"+zone).load("/adserver/display.php","type="+zone+""+extra);
		}
		
		function show_login()
		{
			$('#member').dialog('open');
		}
		
		function menu(choose)
		{
			var url=Array();
			//document.getElementById("menu1").src="images/regular/regularTag01.jpg";
			//document.getElementById("menu2").src="images/regular/regularTag02.jpg";
			document.getElementById("menu3").src="images/regular/regularTag03.jpg";
			document.getElementById("menu4").src="images/regular/regularTag04.jpg";
			document.getElementById("menu5").src="images/regular/regularTag05.jpg";
			document.getElementById("menu6").src="images/regular/regularTag06.jpg";
			//document.getElementById("menu7").src="images/regular/regularTag07.jpg";
			document.getElementById("menu8").src="images/regular/regularTag08.jpg";
			document.getElementById("menu9").src="images/regular/regularTag09.jpg";
			
			document.getElementById("menu"+choose).src="images/regular/regularTag0"+choose+"Clicked.jpg";
			
		}
		
		function windows(url,width,height)
		{
			window.open(url,'cover_save','directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,width='+width+',height='+height);
		}
		
		function win(url,width,height)
		{
			window.open(url,'cover_save','directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,width='+width+',height='+height);
		}
