function openHelpWindow ()
{
  window.open('help/', 'Help', 'directories=no,resizeable=no,menubar=no,scrollbars=no,statusbar=no,toolbar=no,width=760,height=490');
}

function submitForm(theForm) {
  theForm.submit();
}

function openPayWindow (languageID,customerID,serviceID,contingentID,amount,currency,payMode,prefixOrderID)
{
  window.open('paysolution/index.php?&languageID=' + languageID + '&customerID=' + customerID + '&serviceID=' + serviceID + '&contingentID=' + contingentID + '&amount=' + amount + '&currency=' + currency + '&payMode=' + payMode + '&prefixOrderID=' + prefixOrderID  + '', 'Payment', 'directories=no,resizeable=yes,menubar=no,scrollbars=yes,statusbar=no,toolbar=no,width=460,height=250');
}

function redirectToSignup(result,addParam) {
  opener.location.href =  "../signup.php?result=success&mode=step7" + addParam;
  window.close();
}

function redirectToUpdate(result,addParam) {
  opener.location.href =  "../contingent.php?result=success&mode=psp_return" + addParam;
  window.close();
}

function popUp(URL, WIDTH, HEIGHT) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=" + WIDTH + ",height=" + HEIGHT + "');");
}
