/*             All 4 routines here are normal JAVASCRIPT calls           */
/*   ALL WINDOWS FOR THESE CALLS ARE PLACED IN THE SAME SCREEN LOCATION  */
<!--
function resizingWindow(url,windoname) {
  window.open(url,windoname,'width=100,height=100,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,screenX=150,screenY=150,top=150,left=150')
}
// -->
/* Same function as resizingWindow, just by the original routine name... */
<!--
function popUpWindow(url,windoname) {
  window.open(url,windoname,'width=100,height=100,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,screenX=150,screenY=150,top=150,left=150')
}
// -->

/*                                                        */
/* Use this routine for samples eg: COVER envelopes, etc. */
/*                                                        */
<!--
function openWin(URL) {
aWin=window.open(URL,'WinName','scrollbars,resizable=1,width=650,height=500 screenX=150,screenY=150,top=150,left=150');
}
// -->
/*                                                        */
/* Use this routine for HELP WINDOWS - SMALLER IN SIZE    */
/*                                                        */
<!--
function helpWin(URL) {
aWin=window.open(URL,'WinName','scrollbars,resizable=1,width=450,height=400 screenX=150,screenY=150,top=150,left=150');
}
// -->
/*                                                        */
/*  Use this routine for TIP WINDOWS - SMALLER IN SIZE    */
/*                                                        */
<!--
function tipsWin(URL) {
aWin=window.open(URL,'WinName','scrollbars,resizable=1,width=450,height=250 screenX=150,screenY=150,top=150,left=150');
}
// -->
