 function License(gotourl) {
 var thisUrl=document.URL.toString(), start=1+thisUrl.indexOf('/document/'), abspath=thisUrl.substring(0,start);
 abspath= gotourl;
 if (navigator.appName=='Netscape')
  LicenseNS(abspath);
 else {
var msghead="*********************** LICENSE INFORMATION ********************\n"
var msg="By selecting to continue to download this software, you demonstrate your agreement to the following terms of use. By accepting this software, you agree that "
var msg=msg + "SEMATECH has no obligation to support, maintain, or enhance this software; that the software is AS IS; that SEMATECH DISCLAIMS ANY WARRANTIES OF "
var msg=msg + "MERCHANTABILITY OR FITNESS FOR PARTICULAR PURPOSE; AND THAT SEMATECH WILL NOT BE LIABLE FOR ANY DIRECT," 
var msg=msg + "INCIDENTAL,CONSEQUENTIAL OR SPECIAL DAMAGES RESULTING FROM ITS USE. \nBy accepting this software, "
var msg=msg + "you further agree to comply with all applicable laws and regulations regarding the export of the "
var msg=msg + "Product or related technical data to a foreign national or destination. "
var msgline="\n===============================================================\n"
var x=  confirm (msghead+msgline+msg+msgline+"Do you want to download "+gotourl)
 if (x)
 popupWin = window.open(gotourl,'windowName','menubar=no,toolbar=no,location=no,top=0,width=400,height=400')
} }
function LicenseNS(gotourl) {
var msghead="*********************** LICENSE INFORMATION ********************\n"
var msg="By selecting to continue to download this software, you demonstrate your agreement to the following terms of use. By accepting this software, you agree that "
var msg=msg + "SEMATECH has no obligation to support, maintain, or enhance this software; that the software is AS IS; that SEMATECH DISCLAIMS ANY WARRANTIES OF "
var msg=msg + "MERCHANTABILITY OR FITNESS FOR PARTICULAR PURPOSE; AND THAT SEMATECH WILL NOT BE LIABLE FOR ANY DIRECT," 
var msg=msg + "INCIDENTAL,CONSEQUENTIAL OR SPECIAL DAMAGES RESULTING FROM ITS USE. \nBy accepting this software, "
var msg=msg + "you further agree to comply with all applicable laws and regulations regarding the export of the "
var msg=msg + "Product or related technical data to a foreign national or destination. "
var msgline="\n===============================================================\n"
var x=  confirm (msghead+msgline+msg+msgline+"Do you want to download "+gotourl)
 if (x) {
 popupWin = window.open('','windowName','menubar=yes,toolbar=no,location=no,top=0,width=400,height=400')
 popupWin.document.write(" <html> <head> <Title > Download software; ");
  popupWin.document.write('</title></head><body onLoad=\"location.href=\'' + gotourl +'\'">');
  popupWin.document.write('<center><font size=+3>');
  popupWin.document.write(' Please close this');
  popupWin.document.write(' window after download');
  popupWin.document.write('<form> <input type=button value="Close" onClick="self.close()"></form> ');
  popupWin.document.write('</font></center>');
  popupWin.document.write('</body></html>');
  popupWin.document.close(); }
} 
