

//================================================================================================

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=400,left = 200,top = 50');");
}

//=============================================================
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
 
}

//==============================================
//popUp('show_chart.php?ID=',year.menu1.value.selectedindex)

function open_window(menu)
{
		if( menu.selectedIndex !=0)
		{
			f="'toolbar=0','location=0','directories=0','status=0','menubar=0','scrollbars=1','resizable=0','width=800','height=500','top=window.screenY/2','left=window.screenX/2'"
			window.open( "show_chart.php?ID=" + menu.options[menu.selectedIndex].value,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=775,height=455,top=0,left=0');
		}
	
}
//======================================================

