// JavaScript Document
function getSelValue(sel){
var selObj = document.getElementById(sel);	
var selIndex = selObj.selectedIndex;
value = selObj.options[selIndex].value;
return value;
}
function getSelText(sel){
var selObj = document.getElementById(sel);	
var selIndex = selObj.selectedIndex;
text = selObj.options[selIndex].text;
return text;
}
function getSelIndex(sel){
var selObj = document.getElementById(sel);	
return selObj.selectedIndex;
}
function check(){
cat=getSelValue("catopc");
country=getSelValue("countryopc");
lang=getSelValue("langopc");
top.location.href = "browse/"+cat+"/"+country+"/"+lang+"/1";

return false;
}
