//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="©2003-2005 www.SalsaSanDiego.net.  All rights reserved.";

///////////////////////////////////
function clickIE4()
{
	if (event.button==2)
	{
		alert(message);
		return false;
	}
}

function clickNS4(e)
{
	if (document.layers||document.getElementById&&!document.all)
	{
		if (e.which==2||e.which==3)
		{
			alert(message);
			return false;
		}
	}
}

if (document.layers)
{
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById)
{
	document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")


function TAlimit(s)
{
	var maxlength = 8000;
	if (s.value.length>maxlength)
	{
		alert('The maximum number of characters is ' + maxlength + ' for the free posting.  Please visit our plan page for more options.  Thank you, www.SalsaSanDiego.net.');
		s.value = s.value.substring(0,maxlength);
	}
}

function addBookmark()
{
	bookmarkurl = "http://www.SalsaSanDiego.net";
	bookmarktitle = "Salsa San Diego";
	if (document.all)
		window.external.AddFavorite(bookmarkurl, bookmarktitle);
}

