// JavaScript Document

function codes(file, w, h){
  pop=window.open (file, 'orders', config='height=800, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no');
pop.resizeTo(w, h);
//pop.document.open();
pop.focus();
//pop.document.write(CONTENT);
pop.document.close();
}

function codes2(file, w, h){
  terms=window.open (file, 'terms', config='height=800, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no');
terms.resizeTo(w, h);
//terms.document.open();
terms.focus();
//terms.document.write(CONTENT);
terms.document.close();
}