function newWindow(newContent) 
 { 
  winContent = window.open(newContent, 'nextWin', 'right=0, top=0,width=600,height=600, toolbar=no,scrollbars=yes, resizable=yes')          
 } 
function buyItem(itemno,quantity) 
 { 
  window.open("../../../buy.php?cartform=1&item="+itemno+"&quantity="+quantity,"_blank","toolbar=no, location=no, scrollbars=no, width=300, height=300") 
 } 
function showlicense(product) 
 { 
  window.open("../../../license.php?"+product,"_blank","toolbar=no, location=no, scrollbars=yes, width=500, height=600") 
 } 
function checkLicense(form) 
 { 
  if (form.acceptlicense.checked) form.submit(); 
  else { 
    w = window.open("","_blank","toolbar=no, location=no, scrollbars=no, width=300, height=150"); 
   w.document.write('<html><head><title>You must accept the license agreement!</title></head><body bgcolor="#FFFFFF" text="#000000" link="#000000"><center><font face="Arial, Helvetica, sans-serif" size="3">To be allowed to buy and use this product you have to accept the license agreement!<br><br><font size="2"><a href="javascript:this.close()">Close this window</a></font></font><br></center></body></html>'); 
  } 
 } 
function cancelSubmit() 
 { 
   return false; 
 }
