// JavaScript Document
 function advancedSearch()
 {
	  var platform =document.getElementById("platform").value;
	  var from =document.getElementById("from").value;
	  var to =document.getElementById("to").value;
	  var page= from+"-to-"+to+"-converter";
	  if (platform=="mac")
	  {
	 location.href="#";
	 }
	 else
	 {
	 location.href=page+".html";
	 }
	 
	 
 }
