function openFullscreen(u,n){
	if(mac){
		if(ie){ // MAC IE
			var hoseix = -12; var hoseiy = -48;
		}else{ // MAC NN
			var hoseix = -12; var hoseiy = -48;
		}
		var w = window.screen.width + hoseix; // 
		var h = window.screen.height + hoseiy; // 

   	newwindow = window.open(u,n,"scrollbars=no,width=" + w + ",height=" + h);
		newwindow.moveTo(0,0);
		
	}else if (nesc4){ // WIN NN
		var hoseix = -6; var hoseiy = 0;
		var w = window.screen.width + hoseix; // 
		var h = window.screen.height + hoseiy; // 

	   	newwindow = window.open(u,n,"scrollbars=no,width=" + w + ",height=" + h);
		newwindow.moveTo(0,0);
		newwindow.focus();
	}else if (ie4){
		window.open(u,"screen","fullscreen=yes");
	}else{
		location.href=u;

	}
}
