function newWin(url,widthIgnored,HeightIgnored)
{ var title= "Help";
	var winRef = window.open(url,title,"scrollbars=yes,resizable=yes,status=yes,toolbar=yes,location=yes,width=800,height=600")
	winRef.focus();
}
function newWinLarge(url,widthIgnored,HeightIgnored)
{ var title= "Help";
	var winRef = window.open(url,title,"scrollbars=yes,resizable=yes,status=yes,toolbar=yes,location=yes,width=680,height=580")
	winRef.focus();
}	
	
