function openWin(URL){
	myWidth = 726; //screen.width-10;
	myHeight = screen.height - 60;
	parameters = "width="+myWidth+",height="+ myHeight+",top=0,resizable=yes,scrollbars=yes,left=0";
	newwindow=window.open(URL,'name',parameters);
	if (window.focus) {newwindow.focus()}
}
