function ProtectEmail()
{
a = 'joe1';
b = 'Procoins.com';
window.location.href='mailto:' + a + '@' + b +'?Subject=Message from website visitor';
}

function popUp(str) {
props=window.open(str, 'poppage', 'toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=375,height=195');
}

function xPopUp(ref)
{	
	var strFeatures="toolbar=no,status=no,menubar=no,location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=yes,width=400,height=250,left=250,top=10"
	
	newWin = window.open(ref,"TellObj",strFeatures);

       newWin.opener = top;
}