function closedWin(){

	st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	wx = 420;
	wy = 380;
	x = (screen.width  - wx) / 2;
	y = ((screen.height - wy) / 2) - 30;
	newwin = window.open("closed.html","newWinOpen","left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();

}
