
/* General */
function OpenFullImage(strURL) {
    var intImageWinWidth=600;
    var intImageWinHeight=400;
    window.open(strURL,
                'FullImageWIN',
                'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+intImageWinWidth+',height='+intImageWinHeight+',top='+((screen.height/2)-(intImageWinHeight/2))+',left='+((screen.width/2)-(intImageWinWidth/2))+'')
}

function ShowHideFullImg(strFullImg,
                         strVisibility) { 
    var objFullImg=document.getElementById(strFullImg);
    document.getElementById('ProductsDetailsFullImg1').style.visibility='hidden';
    document.getElementById('ProductsDetailsFullImg2').style.visibility='hidden';
    document.getElementById('ProductsDetailsFullImg3').style.visibility='hidden';
    document.getElementById('ProductsDetailsFullImg4').style.visibility='hidden';
    objFullImg.style.visibility=strVisibility;
}

function ShowHideFullImgLarge(strFullImgLarge,
                              strVisibility) { 
    var objFullImgLarge=document.getElementById(strFullImgLarge);
    objFullImgLarge.style.visibility=strVisibility;
}

function FormDisableControl(strControlID) {
    document.getElementById(strControlID).style.visibility='hidden';
}

function FormEnableControl(strControlID) {
    document.getElementById(strControlID).style.visibility='visible';
}

/* Cart */
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 */
