// JavaScript Document
function PopupWindow(theURL) { //v2.0
  window.open(theURL,'profile','status=yes,scrollbars=yes,resizable=yes,width=750,height=690');
}

function PopupCampaign(theURL, width, height) { //v2.0
  window.open(theURL,'profile','status=yes,scrollbars=no,resizable=yes,width='+width+',height='+height);
}