// Created on March 12 2007 by Gurpreet
// Add this to open windows in a pop up

/*
example:
<a href="javascript:void(window.open('http://www.pitneyworks.com/mailstation/images/PB_wizard.cfm','_blank','width=700,height=420,resizable=no,scrollbars=no,location=no,toolbar=no,statusbar=no,menubar=no'));" class="readmore">Use our interactive Product Wizard &gt;&gt;</a>
would get converted to:

<a href="#" onlick="openNewWindow('http://www.pitneyworks.com/mailstation/images/PB_wizard.cfm','_blank','width=700,height=420,resizable=no,scrollbars=no,location=no,toolbar=no,statusbar=no,menubar=no')" class="readmore">Use our interactive Product Wizard &gt;&gt;</a>

*/

function openNewWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
