	function IsChrome(){
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; 
	var is_ff = navigator.userAgent.toLowerCase().indexOf('firefox') > -1; 
	var is_saf = navigator.userAgent.toLowerCase().indexOf('safari') > -1; 
	
	if(is_chrome || is_ff){
		document.writeln("<br>");
		}
	}

function JumpToPage(){
 
    //alert("correct script - city change to " + document.so.city.value);
	//alert("http://www.easymeetingrooms.com/" + document.so.country.value + "/" + document.so.city.value);
	window.location = "http://www.easymeetingrooms.com/" + document.so.country.value + "/" + document.so.city.value;
 
}

/*function LoJumpToPage(){
 
	sel = document.getElementById("area");
	str1 = sel.options[sel.selectedIndex].text;
	//alert("(" + String(str1).substring(0,1) + ")");
	if(String(str1).substring(0, 1) == '-'){
		newstr1 = String(str1).substring(2);
		window.location = "/en/london/" + newstr1;
	}
	else
	{
	    window.location = "/en/london/" + str1;
 	}
}*/

function JumpToCountry(){
	
    //alert("correct script - country change to " + document.so.country.value);
	window.location = "http://www.easymeetingrooms.com/" + document.so.country.value + "/";

}
/*function JumpToPage(cityname){
 
    window.location = "/" + document.so.city.value + "/";
 
return true;
 
}*/

function LoJumpToPage(){
 
	sel = document.getElementById("area");
	str1 = sel.options[sel.selectedIndex].text;
	//alert("(" + String(str1).substring(0,1) + ")");
	if(String(str1).substring(0, 1) == '-'){
		newstr1 = String(str1).substring(2);
		window.location = "/en/london/" + newstr1;
	}
	else
	{
	    window.location = "/en/london/" + str1;
 	}
}


