
function JumpURL(selection) {
	var tempIndex, selectedURL;
	tempIndex = selection.selectedIndex;
	selectedURL = selection.options[tempIndex].value;
	window.top.location.href = selectedURL;
}


var subWindow = null
function newWin(url)	
{
	if (!subWindow || subWindow.closed)	
	{
		subWindow = window.open(url,"newWin",'width=750,height=			525,resizable=yes,scrollbars=yes,location=yes,status=yes,toolbar=yes,menubar=yes,directories=yes')
	} 
	else 
	{
	subWindow.focus();
	subWindow = window.open(url,"newWin",'width=750,height=525,resizable=yes,scrollbars=yes,location=yes,status=yes,toolbar=yes,menubar=yes,directories=yes')
	}
}

	