// JScript source code
<!-- // hide from old browsers

// used for testing javascript functions are working
function fnAlert(strAlertText)
{
	alert(strAlertText);
}

function jumpTo(newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value
	
	if (newPage != "") {
		window.location.href = newPage
	}
}

// -- OPEN WINDOW
function fnOpenWindow(strUrl,intWidth,intHeight) {
	strNewWin = window.open(strUrl, 'pop_window', 'width='+intWidth+',height='+intHeight+',status=1,scrollbars=1,resizable=1');
	strNewWin.focus();
}

function OpenWindow(strUrl,intWidth,intHeight) {
	strNewWin2 = window.open(strUrl, 'pop_window', 'width='+intWidth+',height='+intHeight+',status=1,scrollbars=1,resizable=1');
	strNewWin2.focus();
}

// --> 

