/*
 * Pop up windows for the seating map and
 * the credit card verification number explanation.
 */
 
function popSeatMap() {
	
	if (window.location.hostname.indexOf("cms") >= 0)
	{
		return;
	}
    var strURL="/popup_seatmap_2004.html";
    var intWidth=410;
    var intHeight=600;
    var strAppName=navigator.appName;
    var intAppVer=parseInt(navigator.appVersion);
    if ((strAppName=="Netscape")&&(intAppVer<4)) {
      intWidth=intWidth+12;
      intHeight=intHeight+15;
    }
	var settings = 'width='+intWidth+',height='+intHeight+',screenX=100,';
	settings += 'screenY=100,left=100,top=100';
    var wndPopUp=window.open(strURL,'newwindow',settings);
}

