// JScript source code

function test(){
	alert("test");
}

function globalNavTDNormalMouseOver(tdObj){
	tdObj.oldColor = tdObj.style.color;
	tdObj.style.color = "#AA9341"

}

function globalNavTDNormalMouseOut(tdObj){
	tdObj.style.color = tdObj.oldColor;

}

function menuItemMouseOver(tdObj){
	tdObj.oldBackgroundColor = tdObj.style.backgroundColor;
	tdObj.style.backgroundColor = "#b7ad9e";
}

function menuItemMouseOut(tdObj){
	tdObj.style.backgroundColor = tdObj.oldBackgroundColor;
}

function changeImage(imageId, newImageName){
	document.getElementById(imageId).src = newImageName;
}

function openInNewWindow(url){

	//alert("hello")	;
	
	var windowName = 'resultsFrame' ;//'TestingReadoutWindow';

	var features =
		'width='			+ 900 +
		',height='			+ 400 +
		',directories=' 	+ ('0') +
		',location='    	+ ('0') +
		',menubar='			+ ('0') +
		',scrollbars='  	+ ('1') +
		',status='      	+ ('1') +
		',toolbar='     	+ ('0') +
		',resizable='   	+ ('1');
	
	document.newestWindow = window.open( url, windowName, features );

}