//*************************//
//***COURTESY OF THE MAN***//
//*************************//

// JavaScript Document
function popUp(url, width, height) {
  if (!width) width = 450;
  if (!height) height = 640;
  var scrolling = "no"; 
  features = "width="+width+","
           + "height="+height+","
		   + "toolbar=no,"
           + "location=no,"
           + "status=no,"
           + "menubar=no,"
           + "scrollbars="+scrolling+","
           + "top="+(window.screen.height-height)/2+","
           + "left="+(window.screen.width-width)/2;
		   
  window.open(url,"win"+Math.round(Math.random()*1000),features);
}
// End -->