function SwapOn(img)
{
	img.src = "images/" + img.id + "_on.jpg";			
}

function SwapOff(img)
{
	img.src = "images/" + img.id + "_off.jpg";
}

function NavOn(td)
{
	td.style.border = '#CCCCCC solid 1px';
}

function NavOff(td)
{
	td.style.border = '#808080 solid 1px';
}

function Navigate(url)
{
	document.location=url;			
}

function SendEmail(contact, url)
{
	document.location="mailto:" + contact + "@" + url;
}

function loadDirections(location)
{
	var path = 'viewdirections.asp?loc=' + location;
	var left, top;
    var height = ((location == "sumner")?500:300);
	
	//alert(path);
	if(window.screenLeft)
	{
		left = window.screenLeft + 5;
		var directions = window.open(path, '', 'width=400,height=' + height + ',left=' + left + ',top=50,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no');
	}
	else
	{
		var directions = window.open(path, '', 'width=400,height=500,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no');
	}
}

function verifyLen(frm)
{
	if(frm.value.length > 250)
	{
		frm.value = frm.value.substring(0,250);
	}
}