function openWin(URLPath, name){
	if (name == undefined) {
		name = "_blank";
	}	

	var newwin = window.open(URLPath, name, "width="+(screen.width)+",height="+(screen.height-70)+",top=0,left=0,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes");
	newwin.focus();	// set Focus to new window
}