function openWin(url,w,h,scrolling,status) {
        popupwin = window.open(url,"popupwin","scrollbars="+scrolling+",resizable=yes,status="+status+",menubar=no,locationbar=no,height="+h+",width="+w);
        window.popupwin.focus();
}

function openWin1(url,w,h,scrolling) {
        popupwin = window.open(url, "popupwin1", "scrollbars="+scrolling+",resizable=no,menubar=no,locationbar=false,height="+h+",width="+w);
        window.popupwin.focus();
}

function openWin2(url,name,width,height,status) {
	popupwin = window.open(url,name,"scrollbars=yes,resizable=no,menubar=no,locationbar=no,status="+status+",height="+height+",width="+width);
}


