// *************// PopUP Window Function// *************function newwin(url,w,h) {  if((w==0) && (h==0)) {    window.open(url,"_blank","height=" + self.outerHeight ,"width=" + self.outerWidth + ",resizable");    window.alert("No Height and Width Received")  } else {    window.open(url,"_blank","height=" + h + ",width=" + w + ",resizable");  } }// *************// 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() } 
