// Functions

//Popup Generator
function popup(url,name,width,height){
  window.open(url,name,"width="+width+"px,height="+height+"px,menubar=yes,scrollbars=no")
}

//Printer
function printIt(printThis) {
  var win = window.open();
  self.focus();
  win.document.open();
  win.document.write('<'+'html'+'><'+'body'+'>');
  win.document.write(printThis);
  win.document.write('<'+'/body'+'><'+'/html'+'>');
  win.document.close();
  win.print();
  win.close();
}

