var message_right	= "Warning: Content & Graphics Copyright (c) Whats Up Marketing Solutions Inc, MortgageBrokerWebsites.ca & ProRealtorWebsites.com.\nOur Work is not Public Domain and should not be taken from this site."; // Message for the alert box
if (navigator.appName == 'Microsoft Internet Explorer')
{
	function NOclickIE(e)
	{
		if (event.button == 2 || event.button == 3)
		{
			alert(message_right);
			return false;
		}
			return true;
	}
	document.onmousedown	= NOclickIE;
	document.onmouseup		= NOclickIE;
	window.onmousedown		= NOclickIE;
	window.onmouseup		= NOclickIE;
}
else
{
	function NOclickNN(e)
	{
		if (document.layers||document.getElementById&&!document.all)
		{
			if (e.which==2||e.which==3)
			{
				alert(message_right);
				return false;
			}
		}
	}
	if (document.layers)
	{
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=NOclickNN;
	}
	document.oncontextmenu	= new Function("alert(message_right);return false");
}

function showHideHelp(elementID)
{
	if (document.getElementById(elementID).style.display=='')
	{
		document.getElementById(elementID).style.display	= 'none';
		document.getElementById('helpMinus').style.display	= 'none';
		document.getElementById('helpPlus').style.display	= '';
	}
	else
	{
		document.getElementById(elementID).style.display	= '';
		document.getElementById('helpMinus').style.display	= '';
		document.getElementById('helpPlus').style.display	= 'none';
	}
}
