<!--
// This contains a command to open up other pages in a "pop up" window

function OpenPopUp(QryParam) {
//	var width =  screen.availWidth - 50;
//	var winconfig = "Top=20, left=" + ((screen.availWidth - width) / 2) + ", width=" + width + ", height=" + (screen.availHeight-60) + ", menubar=0, resizable=yes, toolbar=0, scrollbars=3, status=0"; 
var width = 810;
var height = 600;
var winconfig = "Top=20, left=" + ((screen.availWidth - width) / 2) + ", width=" + width + ", height=" + height + ", menubar=0, resizable=yes, toolbar=0, scrollbars=0, status=0";  
var win = window.open("/MainContent/DemoBuilder/" + QryParam, 'demo', winconfig);
win.focus();
}

//-->