function notice(url) { // Popup for notices
  var w;
  w = window.open(url,'vendorPopup','scrollbars=no,resizable=no,width=480,height=370,left=200,top=20');
  w.focus();
}
function legal(url) { // Popup for legal
  var w;
  w = window.open(url,'legalPopup','scrollbars=yes,resizable=no,width=500,height=600,left=200,top=20');
  w.focus();
}
