function printWindow(URL)
{
    iWidth = "700px"
    iHeight = "650px"

	window.open(URL ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=No, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}
function openWindow(URL)
{
    iWidth = "400px"
    iHeight = "400px"

	window.open(URL ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=No, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}


function ShowPic(strPIC)
{
	window.open(strPIC,'_blank','location=no,toolbar=no,menubar=no,scrollbars=Auto,resizable=yes,WIDTH=400,HEIGHT=400')
}

function checkDates(f) {

    var start = f.StartDate.value;
    var elem = start.split('/');
    day = elem[0];
    month = elem[1];
    year = elem[2];

    var dtStart = new Date();
    dtStart.setFullYear(year, month, day);

    var end = f.EndDate.value;
    var elem = end.split('/');
    day = elem[0];
    month = elem[1];
    year = elem[2];

    var dtEnd = new Date();
    dtEnd.setFullYear(year, month, day);

    if (dtStart > dtEnd) {
        alert('תאריך החזרה קטן מתאריך היציאה');
        return false;
    }
    return true;
}
	