function JumpURL(selection) {
var tempIndex, selectedURL;
tempIndex = selection.selectedIndex;
selectedURL = selection.options[tempIndex].value;
window.open(selectedURL, 'netselect');
//window.top.location.href = selectedURL;
}
function openPoll()
{
window.open('sportvote/poll_working.swf','Poll','scrollbars=no,top=20,left=300, width=240,height=350')
}
function newWindow(newContent)
{
winContent = window.open(newContent, 'nextWin', 'left=300, top=20, width=495, height=540, toolbar=no,scrollbars=no, resizable=no')
}
function jumpPage(newLoc)
{
newPage = newLoc.options[newLoc.selectedIndex].value
	if (newPage != "")
	{
	window.location = newPage
	}
}
function eventWindow(newContent)
{
winContent = window.open(newContent, 'nextWin', 'left=50, top=50, width=600, height=400, toolbar=no,scrollbars=no, resizable=no');
}
function emailArticle (url)
{
window.open(url,'miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=350,height=400');
}
function bookmarkIt(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
