// *************// PopUP Window Function// *************function newwin(url,w,h) {  if((w==0) && (h==0)) {    window.open(url,"_blank","height=" + self.outerHeight ,"width=" + self.outerWidth + ",resizable,scrollbars");    window.alert("No Height and Width Received")  } else {    window.open(url,"_blank","height=" + h + ",width=" + w + ",resizable,scrollbars");  } }// *************// PopUP Window Function// *************function OpenWin(linkid) { NewWin=window.open (linkid,"newwin",config="width=360,height=300,location=no,status=no,directories = no,toolbar=no,scrollbars=no,menubar=no,resizable=no,top=30,left=30"); NewWin.focus() } 
// *************// PopUP Window Function // *************function Start(page) { OpenWin =this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resize=no,width=360,height=300");}
