function openNewWindow(url) {
	try {
		var state = "directories=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes"
					+ ",status=yes,toolbar=yes,top=0,left=0,width=1024,height=768";
		window.open(url, "_blank", state);
	}
	catch(e){}
}