function salir(id, grafico){

if (document.extranet.elements[id].value == '')
  { document.extranet.elements[id].style.background = '#ffffff url(img/'+grafico+'.gif) left no-repeat';}
}

function entrar(id){
document.extranet.elements[id].style.background = '#ffffff';
}

function marquesinaParar(cual){
	document.getElementById(cual).stop();
}

function marquesinaContinuar(cual){
	document.getElementById(cual).start();
}

function AbrirVentana(windowURL, windowName, windowFeatures) { 
	window.open( windowURL, windowName, windowFeatures ) ; 
}

// funciones de la encuesta
function cl(nro){document.encuesta.texto.value = nro;}

function encuesta() {
	vot=document.encuesta.texto.value
	window.open('encuesta/resultado.asp?voto=' + vot,'enc_oli','width=422,height=310');
}

function resultado() {
	window.open('encuesta/resultado.asp','enc_oli','width=422,height=310');
}
// fin encuesta
