// JavaScript Document
var newWin=0;
function newWindow(URL)
{
	if (newWin){
		if(!newWin.closed){
			newWin.close();
		}
	}
	newWin = open(URL,'newWin','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=750, height=550');
}