function openMag()
	{
	//set size of new window
	w = 600;
	h = 580;
	
	//make sure the size isn't too big for set resolution
	if (h > screen.availHeight)
		{h = screen.availHeight;}
	if (w > screen.availWidth)
		{w = screen.availWidth;}
	
	//set coords to place window in center screen
	t = screen.availHeight / 2 - h / 2;
	l = screen.availWidth / 2 - w / 2;
	
	magWin = window.open('','magWin','top='+t+',left='+l+'menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes,width='+w+',height='+h);
	magWin.resizeTo(w,h);
	magWin.moveTo(l,t);
	magWin.focus();
	
	magWin.location = '/Magazine';
	}