/* General */

function OpenWindow(strURL,strName,varParams) {
    window.open(strURL,strName,varParams)
}

function FormSubmit(strFormName) {
    document.getElementById(strFormName).submit()
}

function FormDisableControl(strControlID) {
    document.getElementById(strControlID).style.visibility='hidden';
}

function FormEnableControl(strControlID) {
    document.getElementById(strControlID).style.visibility='visible';
}

function InformationShowHideFullImg(strFullImg,strVisibility) { 
    var objFullImg=document.getElementById(strFullImg);
    objFullImg.style.visibility=strVisibility;
}

function OrderDeliveryClear() {
    document.getElementById('DeliveryFirstName').value='';
    document.getElementById('DeliverySurname').value='';
    document.getElementById('DeliveryContactNumber').value='';
    document.getElementById('DeliveryAddress1').value='';
    document.getElementById('DeliveryAddress2').value='';
    document.getElementById('DeliveryTown').value='';
    document.getElementById('DeliveryCounty').value='';
    document.getElementById('DeliveryCountry').value='';
    document.getElementById('DeliveryPostcode').value='';
}

/* End */
