function OpenNewWindow(Url, Title, width, height)
{
var NewWin;
	NewWin = window.open( Url, Title, "scrollbars=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,width=" + width + ",height=" + height);
	NewWin.focus();
}

function open_window(URL) {
	windowSic = window.open(URL,"Login","Width=500,height=300,resizable");
}

function ShowLegend(){

var ret =  showModalDialog(  "/gateway/Template_Legend.asp", "Legends", "resizable: yes; help: no; status: no; scroll: auto; dialogHeight:600px; dialogWidth:480px;");
	
}