/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function changeLang(lang){
	
	var url = location.href;
	if(lang == 'EN'){
		url = url.replace( '#ES',  '#EN');
	}else{
		url = url.replace( '#EN',  '#ES');
	}
	location.href = url;
	location.reload();
}
