var handleMail = {
	strHrefDefault : '',
	objHref : null,
	send : function(objEle)
	{
		objEle.blur();
		handleMail.objHref = objEle;
		handleMail.strHrefDefault = objEle.href;
		handleMail.objHref.href = 'mailto:info@ph-projects.com';
		window.setTimeout(function(){ handleMail.objHref.href = handleMail.strHrefDefault ;},500);
		return true;
	}
};