$(function () {

	//Check if we are in payment form
    /*    var href = jQuery(location).attr('href');

        //get child's name to pass to pelecard
        if (href == "http://stavarts.com/?page_id=2309" ) {
			var childName = $('#paymentChidName').val();
			$('#text1').val(childName);
		}
	*/	
		

});
function onPaymentClick()
{
	childName = $('#paymentChidName').val();
	$("#getPaymentChidName").val(childName);
}
function validPaymentForm() {

    var text1 = $('#text1').val();
 

	if (text1 == "" || text1 == " " || text1 == null)
	{
		alert('חובה למלא את כל הפרטים בטופס!');	
		return false;
	}
    else {
       		return true;
	}
 }

function validPaymentForm2(form1) {
  

    var text1 = $('#text1').val();

    if (text1 == "" || text1 == " " || text1 == null) {
        alert('חובה למלא את כל הפרטים בטופס!');
        return false;
    }

    if (form1.CHECKBOX_1.checked == false) {
        alert('לא ניתן לבצע תשלום ללא אישור התקנון');
        return false;
    }
    else {
        return true;
    }
}

