<!--
// TD Hover
	function msOverTd(src,clrOver){if (!src.contains(event.fromElement)){ src.style.cursor = 'hand'; src.bgColor = clrOver; }} 
	function msOutTd(src,clrIn){ if (!src.contains(event.toElement)){ src.style.cursor = 'default'; src.bgColor = clrIn; }}

	function msClickTd(src){ 
	if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		}
	}

// Escape Frame
	if (top.location != location) top.location.href = location.href;

// this opens a new window, submit the poll form, and send the results to the popup window
function pollSubPop (wirl, name, widgets, specialsURL)
{
	var url = 'http://www.jamfit.com' + wirl;
	popupWin = window.open(url, name, widgets);
	popupWin.opener.top.name = "opener";
	popupWin.focus();
}

// this is for opening pop-up windows
function openWindow (url,name,widgets)
{
	popupWin = window.open (url,name,widgets);
	popupWin.opener.top.name="opener";
	popupWin.focus();
}
function closeWindow ()
{
	parent.close ();
}

// this is for disabling forms not ready for use
// eventHandler="showAlert('message');return false"
function showAlert(message)
{
	alert(message);
}
//-->