/*	This file created by code authority to abstract common client side javascript functions into their own includeable file
	
	functionality which is truly common or re-used by two or more pages, should always be put here.
*/
function bookmark(url, description)
{
	netscape="Netscape User's hit CTRL+D to add a bookmark to this site.";

	if (navigator.appName=="Microsoft Internet Explorer")
	{
		window.external.AddFavorite(url,description)
	}
	else if (navigator.appName=='Netscape')
	{
		alert(netscape);
	}

}

function showServiceTips()
{
	window.open("members/servicetips.asp");
}

function showComancheTips()
{
	window.open("members/ComancheTips.asp");
}

function showTip(TipID)
{
	window.open("/showTip.asp?id=" + TipID,null,"scrollbars=yes,height=00,width=500,status=yes,toolbar=no,menubar=no,location=no");
}

function EnlargeInfo(ContentType,ID)
{
	window.open("/EnlargeInfo.asp?ContentType=" + ContentType + "&id=" + ID,null,"resizable=yes,scrollbars=yes,height=600,width=700,status=yes,toolbar=no,menubar=no,location=no");
}

function nextServiceTip()
{
	defaultSR.submit();
}