/**
* popUp function to open a pop-up window
*
**/

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strHeight=="") {
	strHeight=560;
}
if (strWidth=="") {
	strWidth=540;
}
var y=(screen.height-strHeight)/2;
var x=(screen.width-strWidth)/2;

if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
if (strType=="standard") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth+",top="+y+",left="+x;
window.open(strURL, 'newWin', strOptions);
}
