function gotoUrl(url,isSameWin,atts,wid,hei){  if(!isSameWin){isSameWin = false;}  widthSize = ((screen.width*1-100));  heightSize =  ((screen.height*1-200));  if(isSameWin==false){    if(wid){           window.open(url,"", "location=yes,height="+hei+",width="+wid+",toolbar=no,directories=no,status=yes,scrollbars=yes,resizable=yes,menubar=no,statusbar=no,top=10,left=10");    }else{       if(atts){           window.open(url,"", atts);       }else{           window.open(url,"", "location=yes,top=0,height="+heightSize+",width="+widthSize+",toolbar=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,menubar=no,statusbar=no,top=0,left=0");       }    }      }else{    window.location = url;  }}
