﻿// Archivo JScript
 function selectCountry(obj)
		{
		    //alert(document.getElementById('selectcountry').value);
		    var select = document.getElementById('selectcountry');
		    
		    if(select.selectedIndex==1)
		        window.location.href="http://www.sealy.com.uy/home.html";
		    else if(select.selectedIndex==2)
		        window.location.href="http://www.sealy.com.br/home.html";
            else if(select.selectedIndex==3)
		        window.location.href="http://www.sealy.cl/home.html";
		   else if(select.selectedIndex==4)//
		        window.location.href="http://www.sealy.com.pe/home.html";		        
		    
		}


