// JavaScript Document


function show(targetId){

 if (document.getElementById){
 target = document.getElementById(targetId);
 target.style.display = "";
 }

}

function hide(targetId){

 if (document.getElementById){
 target = document.getElementById(targetId);
 target.style.display = "none";
 }

}

function mark_locations(targetId){

 if (document.getElementById){
 target = document.getElementById(targetId);
 target.style.color = "#D85C0B";
 target.style.background = "#666666";
 }

}

function dim_locations(targetId){

 if (document.getElementById){
 target = document.getElementById(targetId);
 target.style.color = "";
target.style.background = "white";
 }

}


function Openwindow(selObj){

var selectedoption = selObj.options[selObj.selectedIndex].value;
window.open('http://www.inlingua.com/centers/centers.asp?RefCtr='+ selectedoption,'_blank')
}
