var win = null;

function abrirPopup(url, w, h){
	if (win != null && win.open) win.close();
	win=window.open(url,'popup','toolbar=0,location=0,status=0,menubar=0,resizable=yes,scrollbars=yes,width='+w+',height='+h);
	if(window.focus) win.focus();
}

function verGeoRef(getVars){
	var geoh = 650;
	var geow = 764;

	if (win != null && win.open) win.close();
	url="loc_map.asp?"+getVars+"&lingua=0";
	win=window.open(url,'popup','toolbar=0,location=0,status=0,menubar=0,resizable=no,scrollbars=no,width='+geow+',height='+geoh+'');
	if(window.focus) win.focus();
}

function limpaEstilos(frm, classe){
	for(var i = 0; i < frm.length; i++){
		if(frm.elements[i].type == "text" || frm.elements[i].type == "select-one" || frm.elements[i].type == "textarea")
    		frm.elements[i].className = classe
	}
}
function gotFocus(elem, text){
	if(elem.value == text) elem.value = ''
}

function lostFocus(elem, text){
	if(elem.value == '') elem.value = text
}