<!--

var newwindow = '';

function blankNewWindow(area) 
{
	s = area.options[area.selectedIndex].value
	if (area.selectedIndex >= 0) 
	{

		if (!newwindow.closed && newwindow.location)
		{
			if (s) {newwindow.location.href = s};
		}
		else
		{
			newwindow=window.open(s,'')
			if (!newwindow.opener) newwindow.opener = self;
		}
		if (window.focus) 
			{
			newwindow.focus()
			

			}
		
	} 
	else 
	{
		if (s && area.selectedIndex != 0) {document.location.href=s}	
	}
		
}


function blankNewWindowFullList(sform) 
{
	s = area.options[sform.selectedIndex].value
	if (area.selectedIndex >1) 
	{

		if (!newwindow.closed && newwindow.location)
		{
			if (s) {newwindow.location.href = s};
		}
		else
		{
			newwindow=window.open(s,'');
			if (!newwindow.opener) newwindow.opener = self;
		}
		if (window.focus) {newwindow.focus()}
		
	} 
	else 
	{
		if (s && area.selectedIndex != 0) {document.location.href=s}	
	}
		
}
//-->
