function popUp(strURL,strType,strHeight,strWidth,winName) {
   	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="center") strOptions="status,height="+strHeight+",width="+strWidth+",top="+((screen.height - strHeight) / 2)+",left="+((screen.width - strWidth) / 2);
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	if (strType=="fullscreen") strOptions="fullscreen,scrollbars=0";
	if(winName==null) winName = "newWin";
	var newWin = window.open(strURL, winName, strOptions);
}
