// Website Common script
// Copyright Janashakthi Insurance PLC 2010


function hideLayer(layid){
	document.getElementById(layid).style.visibility="hidden";
}

function showLayer(layid){
	document.getElementById(layid).style.visibility="visible";
}

function validateEmail (str)
{
    if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test (str))
    {
      return (true)
    }
    else
    {
      return (false)
    }
}
