<!--

var newWindow = null; 
function openWin(filename,high,wide) { 

	newWindow = window.open(filename,"","height="+high+",width="+wide+"");
	newWindow.focus(); 
}
//-->

