function OpenHelpWin(){
	window.open("/shop/helpinfo.aspx", "helpinfo", "toolbars=no, scrollbars=yes, width=408, height=350")
}

function toggleDiv(divid) {
    var div = document.getElementById(divid);
    div.style.display = div.style.display == 'block' ? 'none' : 'block';
}

function FirstHide(divid) {
    alert(divid);
    var div = document.getElementById(divid);
    div.style.display = div.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 showAdvices() {

    if ($(document).ready(function() {
        $("#mainofferlist li:last").css("border", "none");
        showOffer(1);
    }));
}


		
