<!-- // openWin.js - this js file includes the functions for open new window.
function openNewWindow(location, w, h, name, hasScrollBar){
	defW = 300; defH = 102; defName = ''; defHasScrollBar = "no";
	w = (w==null || w=="" || w==0) ? defW : w;
	h = (h==null || h=="" || h==0) ? defH : h;
	w=420;
	name = (name==null || name=="") ? defName : name;
	//hasScrollBar = (hasScrollBar==null || hasScrollBar!="yes") ? defHasScrollBar : hasScrollBar;
	hasScrollBar="yes";
	var newWindow2 = window.open(location, name,"scrollbars="+hasScrollBar+",menubar=no,resizable=yes,height="+h+", width="+w+"");
	newWindow2.moveTo(Math.ceil((window.screen.width-w)/2),Math.ceil((window.screen.height-h)/2));
	newWindow2.focus();
}

//openNewWindow("open.vm", "300", "139", "", "no");
//-->

