// JavaScript Document
<!--
	function OpenTracking(fe)
		{
			var opt_key = fe.selectedIndex;
			var uri_val = fe.options[opt_key].value;
			window.open(uri_val,'_blank');
			return true;		
		}
	function loadpresentation() {
		bName=navigator.appName;
		bVer=parseInt(navigator.appVersion);
		
		if (bName=="Microsoft Internet Explorer") br = "IE";
		else if (bName=="Netscape") br = "NS";
		else br="IE";		
		if (br=="IE") 
		{ window.open("/userassets/ufopresentation.html","UFOPRES","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,copyhistory=0,resizable=0,width=780,height=540");}			
		if (br=="NS") 
		{ window3=open("/userassets/ufopresentation.html","UFOPRES","HEIGHT=780,WIDTH=540")}
	}
	function loadvalueadded(vasid) {
		bName=navigator.appName;
		bVer=parseInt(navigator.appVersion);
		
		if (bName=="Microsoft Internet Explorer") br = "IE";
		else if (bName=="Netscape") br = "NS";
		else br="IE";	
		if (br=="IE") 
		{
			window.open("valueaddeddownload.asp?vasid="+ vasid,"VALUEADDDLOAD","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,resizable=1,width=400,height=210");
		}
			
		if (br=="NS") 
		{
		window3=open("valueaddeddownload.asp?vasid="+ vasid,"VALUEADDDLOAD","HEIGHT=210,WIDTH=440")
		}
	}
	
var state = 'none'; 

function showhide(layer_ref) { 
	if (state == 'block') { 
		state = 'none'; 
	} 
		else { 
			state = 'block'; 
	} 
	if (document.all) { //IS IE 4 or 5 (or 6 beta) 
		eval( "document.all." + layer_ref + ".style.display = state"); 
	} 
	if (document.layers) { //IS NETSCAPE 4 or below 
		document.layers[layer_ref].display = state; 
	} 
	if (document.getElementById &&!document.all) { 
		hza = document.getElementById(layer_ref); 
		hza.style.display = state; 
	} 
} 



//-->


