// JavaScript Document

function open_new(nurl)
{
	var dwin= window.open(nurl, 'dwin', 'width=1000, height=600, fullscreen=yes, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no');
	if(!dwin)
		alert("Please enable popup to access the database");
	else
		dwin.focus();
	return false;
}
