/*'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Name       :  openPaymentHelp
' Purpose    :  Controls the opening of a new browser window to display
'		instructions on using PayPal.
' Parameters :  none.
' Return val :  none.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''*/
function openPaymentHelp()
{
   window.open("paymentHelp.htm","hbbcWindow","toolbar=no,width=600,height=400,resizable=yes,status=no,scrollbars=yes");
}


/*'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Name       :  openNewWindow
' Purpose    :  Controls the opening of a new browser window.
' Parameters :  url - indicates the url to display in the new window.
' Return val :  none.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''*/
function openNewWindow(url)
{
   winTarget = url;

   window.open(winTarget,"gbcWin","location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes");
}