function CheckDate()
{
	var windowW=501
// Set window height to 170 below for pre-order page
	var windowH=580
	var windowX = 100
	var windowY = 0
	var urlPop = "/ita/mapa.htm"
// Change artist name below
	var title =  "Como llegar"
	
	s = "width="+windowW+",height="+windowH;
	
	function openFrameless() {
	if (navigator.appName == 'Microsoft Internet Explorer') {
	NFW = window.open("","popFrameless","fullscreen,"+s);
	NFW.focus();
	NFW.resizeTo(windowW,windowH);
	NFW.moveTo(windowX,windowY);
	var frameString=""+
	"<html>"+
	"<head>"+
	"<title>"+title+"</title>"+
	"</head>"+
	"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
	"<frame name='top' src='"+urlPop+"' scrolling=no>"+
	"<frame name='bottom' src='about:blank' scrolling='no'>"+
	"</frameset>"+
	"</html>";
	NFW.document.open();
	NFW.document.write(frameString);
	NFW.document.close();
	}
	
	else {
	NFW = window.open(urlPop,"popFrameless","scrollbars,"+s);
	NFW.focus();
	NFW.resizeTo(windowW,windowH);
	NFW.moveTo(windowX,windowY);
	}
	}
	
	openFrameless()

}

function openWindow(width,height) {
    x = (640 - width)/2, y = (480 - height)/2;

    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
	if (screen.availWidth > 1800) { 
	x = ((screen.availWidth/2) - width)/2; 
    } 
window.open('frame.html','newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
}

