<!--
var ready="no";

	function ImgOn(img_name)
	{
		var x;
		for(x = 0; x < document.images.length; x++)
		{
			if(document.images[x].name == img_name)
			{
				document.images[x].src = '/images/' + img_name + '_yellow.gif';
				break;
			}
		}
	}
	function ImgOff(img_name)
	{
		var x;
		for(x = 0; x < document.images.length; x++)
		{
			if(document.images[x].name == img_name)
			{
				document.images[x].src = '/images/' + img_name + '_white.gif';
				break;
			}
		}
	}
	
	function CFRSearch()
	{
		var winW = 0;
		var winY = 0;
		if(window.innerWidth)
			winW = window.innerWidth;
		else if(document.body)
		{
			if(document.body.offsetWidth)
				winW = document.body.offsetWidth;
		}
		if(window.innerHeight)
			winY = window.innerHeight;
		else if(document.body)
		{
			if(document.body.offsetHeight)
				winY = document.body.offsetHeight;
		}
		
		if(winW < 300)
			winW = 300;
		else
			winW = winW - 50;
		
		if(winW > 1000)
			winW = 1000;
	
		if(winY < 300)
			winY = 300;
		else
			winY = winY - 100;

		window.open('/cfr_table.asp?height=' + winY, 'cfr_win', 'width=' + winW + ',height=' + (winY + 100) + ',left=25,top=20,scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,resizable=yes');
	}

	function NavPDFOpen(vArg1)
	{
		var winW = 0;
		var winY = 0;
		if(window.innerWidth)
			winW = window.innerWidth;
		else if(document.body)
		{
			if(document.body.offsetWidth)
				winW = document.body.offsetWidth;
		}
		if(window.innerHeight)
			winY = window.innerHeight;
		else if(document.body)
		{
			if(document.body.offsetHeight)
				winY = document.body.offsetHeight;
		}
		
		if(winW < 300)
			winW = 300;
		else
			winW = winW - 50;
		
		if(winW > 1000)
			winW = 1000;
	
		if(winY < 300)
			winY = 300;
		else
			winY = winY - 100;

		var pageTracker2 = _gat._getTracker("UA-4133511-1");
		pageTracker2._initData();
		pageTracker2._trackPageview('/pdfs/' + vArg1 + '.pdf');

		if(vArg1.toLowerCase() == 'uncat_v1_3')
			TrackCatalogDownload();

		window.open('/pdfs/' + vArg1 + '.pdf', 'pdfwin3', 'location=no,menubar=yes,toolbar=no,scrollbars=both,resizable,width=' + winW + ',height=' + winY + ',left=65,top=65');
	}
	
	function TrackCatalogDownload()
	{
	
tmpIMG = new Image();

tmpIMG.src = 'http://www.googleadservices.com/pagead/conversion/1070607257/?label=Y1UCCJnQSBCZ18D-Aw&script=0&randDIS=' + (Math.random() * 200);

		var xmlHttp;
		try{
			// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		}
		catch (e){
			// Internet Explorer
			try{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e){
				try{
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch (e){
					return false;
				}
			}
		}
		
		xmlHttp.onreadystatechange=function(){
			if(xmlHttp.readyState==4){
				// parse result
				//xmlHttp.responseText;
			}
		}
		
		/* Need to add random variable to avoid browser caching problem */
		var var_url = '/un/track_catalog_download.asp?rand=' + (Math.random() * 200);
		xmlHttp.open("GET", var_url, true);
		xmlHttp.send(null);
	}	
//-->
