function drilldownProducts() 
	{
		var chosen = eval(document.drilldown.products.selectedIndex);
		parent.location.href=(document.drilldown.products.options[chosen].value);
	}


/*
Choose international site  -- all pages, referenced in all topnav files
*/

function new_win_fixed(url,name,x,y)
	{
		var str_features_1 = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="
		var str_features_2 = ",height="
		var str_features_3 = ",left=0,top=0"
		var str_features=str_features_1+x+str_features_2+y+str_features_3
		link = window.open(url,name,str_features);
    	link.focus();
	}


function new_win_noresize(url,x,y)
	{
		var str_features_1 = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="
		var str_features_2 = ",height="
		var str_features_3 = ",left=0,top=0"
		var str_features=str_features_1+x+str_features_2+y+str_features_3
		link = window.open(url,"Link",str_features);
    	link.focus();
	}

function new_win(url,x,y)
	{
		var str_features_1 = "toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width="
		var str_features_2 = ",height="
		var str_features_3 = ",left=0,top=0"
		var str_features=str_features_1+x+str_features_2+y+str_features_3
		link = window.open(url,"Link",str_features);
    	link.focus();
	}

function new_window_1024(url) 
  {
    link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,SCROLLING=0,resizable=0,width=1024,height=768,left=0,top=0");
    link.focus();
  }

function internationalSearch() 
	{
		var chosen = eval(document.international.choice.selectedIndex);
		parent.location.href=(document.international.choice.options[chosen].value);
	}
	
function OpenDocument(strFileName) 
{
	var iWidth		= 800;
	var iHeight		= 600;
	var iToolbar	= 0;
	var iLocation	= 1;
	var iDirectories= 0; 
	var iStatus		= 0;
	var iMenubar	= 0;
	var iScrollbar	= 1;
	var iResizable	= 1;

	var iLeftPos=screen.width/2 - (iWidth/2);
	var iTopPos=screen.height/2 - (iHeight/2);

	var strWindowName='View' + new String(Math.round(Math.random() * 100000));
	
	window.open(strFileName,strWindowName, "toolbar=" + iToolbar + ",location=" + iLocation + ",directories=" + iDirectories + ",status=" + iStatus + ",menubar=" + iMenubar + ",scrollbars=" + iScrollbar + ",resizable=" + iResizable + ",width=" + iWidth + ",height=" + iHeight + ",left=" + iLeftPos + ",top=" + iTopPos);
}	