// JavaScript Document
function MM_jumpMenu(targ,selObj,restore){ //v3.0 
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); 
	if (restore) selObj.selectedIndex=0; 
} 

function winOpen(url, width, height)
{
	var w = window.open(url, '', 'width=' + width + ',height=' + height);
}

function winOpenCenter(url, width, height)
{
	var left   = (screen.width  - width)/2;
 	var top    = (screen.height - height)/2;
	var p = window.open(url, '', 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function goToMainWindow(url)
{
	window.opener.href = url;
	//self.close();
}

function getIssueYr(issueYr)
{
	location.href = 'index.asp?yr=' + issueYr;
}	


