// JavaScript Document

function ShowWin(urlstr,widthpx ,heightpx,windowName){
	widthstr = "width=" + widthpx;
	heightstr = "height=" + heightpx;
	options = "scrollbars=yes,"+widthstr+ "," + heightstr +",resizable=yes"
	miniWin = window.open(urlstr,windowName,options);
	miniWin.focus();
}


function ShowWinNoneScroll(urlstr,widthpx ,heightpx){
	widthstr = "width=" + widthpx;
	heightstr = "height=" + heightpx;
	options = "scrollbars=no,"+widthstr+ "," + heightstr +",resizable=no"
	miniWin = window.open(urlstr,'MYD',options);
	miniWin.focus();
}

