function OpenHelpWin(){
	window.open("/shop/helpinfo.aspx", "helpinfo", "toolbars=no, scrollbars=yes, width=408, height=350")
}

function ToggleDiv(){
	document.getElementById("morewine").style.display = (document.getElementById("morewine").style.display == 'block') ? 'none':'block';
}



function FirstHide(){
	if(document.getElementById("morewine"))
	{
		document.getElementById("morewine").style.display = 'none';
	}
}

function IsValidEmail(src) {
  var regex = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;
  alert(regex.test(src));
  return regex.test(src);
}




function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#CCFF33";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#66CC00";
}

function SetDropDown(source, destination) {

    var found = false;
    for (var i = 0; i <= destination.length -1; i++) {
        if (destination[i].value == source[source.selectedIndex].value) {
            destination[i].selected = true;
            found = true;
        }
    }

    if (!found) {
        alert("Bezorging niet mogelijk in geselecteerde land");
    }
    
}



		