// JScript source code
function rollImg(myObj, myFile){
	myObj.src=myFile;
}
function openWindow(url,title,width,height) 
{
	var newWindow;
	var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=' + width + ',height=' + height + ',status=yes';
	newWindow = window.open(url, title, props);
}