	function OpenWindow(url,name) {
		newWin = window.open(url,name,"width=500,height=500,scrollbars=yes,status=no,toolbar=yes,location=no,menubar=yes,resizable=yes");
		newWin.moveTo(0,0);
		newWin.focus();
	}