<!--

function platformDetect()
{
  if(navigator.appVersion.indexOf("Win") != -1)
	  {
	   return 1
	  }
  else if(navigator.appVersion.indexOf("Mac") != -1)
		  {
		  return 2
		  }
	  else
	  	{
		return 0
		}
}


function	download_tuneranger() {
	if( platformDetect() == 2) {	 
		window.location.href ='tr_mac_dlref.htm'; }
	else {
		window.location.href ='tr_win_dlref.htm'; }	
}



//-->



