function wmContact(url)
{
	var cwmf = window.open(url, 'cwmf', 'width=500,height=300,location=0,menubar=0,toolbar=0,status=0,resizable=1');
	cwmf.focus();
	return true;
}

function Trim(str)
{   
	return str.replace(/^\s+/,'').replace(/\s+$/,'');
}


function OfferWindowPreference()
{
	document.write('<div id="window-pref">');
	document.write('<form name="frmWinPref" id="frmWinPref" method="post" action="">');
	document.write(' &nbsp; &nbsp; ');
	document.write('<input type="checkbox" name="chkWinPref" id="chkWinPref" />');
	document.write('<label for="chkWinPref">Open links below in a new window.</label>');
	document.write(' &nbsp; &nbsp; ');
	document.write('</form>');
	document.write('</div>');
	return true;
}

function UseWindowPreference(lnk)
{
	lnk.target = (document.frmWinPref.chkWinPref.checked) ? '_blank' : '_self';
	return true;
}
