// These variables are not normally set here, but are in this
// case to allow for the proper functioning of our web page html manager.
// See DevExpress
// 6/23/2011
//
// Global Variables
var clientID = "thebilliardfactory";
var planID = "";

var globalURL = "http://roomplanner.icovia.com/"
var targetURL = globalURL + clientID;
var launchURL = targetURL + "/resources/launch.swf";

function icx_windowopen() {
	var launchURL = targetURL +'/resources/icovia.aspx'

	if(planID.length > 20){
		launchURL = launchURL +'?planID='+ planID;
	}
	
	var newWindow = null;
	newWindow=window.open(launchURL ,'RP','height=550,width=800,top='+((screen.height/2)-(300))+',left='+((screen.width/2)-(400))+',status=no,toolbar=no,scrollbars=no,resizable=yes,menubar=no'); void(0);
	
	var popUpMsg = "You appear to have a pop-up blocker that prevents the Room Planner from opening. Please enable pop-ups for this site and try again. Thank you.";
	if(!newWindow){
		alert(popUpMsg);
	}
}

