    
    function openWindow(id) {
		switch(id) {
			case "company":
				address = 'http://www.citrix.com/';
				newWindowBlank(address, true);
				break;
			case "privacy":
				address = 'http://citrix.com/site/aboutCitrix/legal/secondLevel.asp?level2ID=2208';
				newWindowBlank(address);
				break;
			case "contact":
				address = 'http://www.citrix.com/English/contact/index.asp';
				newWindowBlank(address, true);
				break;
			case "taf":
				var subject = 'Citrix ChatterBox';
                var body = "I thought you'd be interested in this great resource: \n\nhttp://chatterbox.networkworld.com/";
				address = 'mailto:?subject=' + escape(subject) + '&body=' + escape(body);
				document.forms[0].action = address;
                document.forms[0].submit();
				break;
		}
	}
	
	// --------------  TRACKING functions --------------
	
	// Level 1 hits - track title of asset when visitor clicks on LEARN MORE and goes to L2 page
	// pass asset title string
	function trackHit(ttl) {
	
        _hbPageView ("Learn more - " + ttl, "Learn more");
		
	}
	
	// Level 2 links - either download content URLs, related content URLs or resource center URLs
	function getAsset(address) {
	
		newWindowBlank(address, true);
		
	}
	
	// --------------  Window functions --------------
	function newWindowBlank(address, capture) {

      if (capture) {
        _hbPageView (address, "Content");
      }
		var newWin = window.open (address);
		newWin.focus();
	}
	
	function newWindowSized(address,w,h,capture) {
      if (capture) {
        _hbPageView (address, "Content");
      }
		var newWin = window.open (address,"","width=" + w + ", height=" + h);
		newWin.focus();
	}
	
	function closeWindow() { 
		self.close();
	}
	      
	
	

