function open_win(theURL,winName,features,width,height) { //v2.0
  features=features+',width='+width+',height='+height;
  productw=window.open(theURL,winName,features);
  productw.focus();
}


function makejump(URL) { 
  document.location=URL
}

function loadURL(URL)
{    
  self.opener.document.location = URL;
}

