function ProtectEmail()
{
a = 'hottub4';
b = 'aol.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)
{	w=ref.width+40;
                     h=ref.height+100;
	var strFeatures="toolbar=no,status=no,menubar=no,location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=yes,resize=yes,width=440,height=450,left=250,top=10"
	
	newWin = window.open(ref,"TellObj",strFeatures);

       newWin.opener = top;
}

