<!--
// deluxe-popup.js
// scripts for business forms pop ups ******
// Used on /sitemap.jsp
// Used in 1_col\presentation\1_col_deluxe.tpl

function newWin(PaneLocation,PaneTitle,Panewidth,Paneheight) {
   window.open(PaneLocation,PaneTitle,'toolbar=no,status=no,menubar=no,location=no,resizable=yes,scrollbars=yes,width=' + Panewidth + ',height='+ Paneheight +',left=0,top=0')
}

function help(PaneLocation) {
	helpWin = window.open(PaneLocation,'help','toolbar=yes,status=no,menubar=no,location=no,resizable=no,scrollbars=yes,width=600,height=550,left=0,top=0')
	helpWin.focus()
}
// -->