/* 
Function to change the mouseover status of a menu image
menuitem is the name of the image in the menu, state is either mouseover or mouseout
*/
var windowRef, queryString;

function newWindow(url,playFile,displayText) {
	
	queryString =  url + "?playFile=" + playFile + "&displayText=" + displayText;
	
	windowRef = window.open(queryString,'mywin','left=300,top=250,width=200,height=150,toolbar=0,resizable=0,location=0');
	if (window.focus) {windowRef.focus()}
	

}