// JavaScript Document

function go_quick(tlink)
{
	if((tlink!='') && (tlink!=null))
		location.href= tlink;
}

function open_new(nurl)
{
	var dwin= window.open(nurl, 'dwin', 'width=800, 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;
}

