//alert("publicacions");


function imatge(_param,numImagenes){
	//var sort = aleatorio(1,numImagenes);
	var idioma = 'cat';
	if(_param==1){idioma='cat';}
	if(_param==2){idioma='esp';}
	if(_param==3){idioma='eng';}
	var imagePath = "/V38/imatges/"+idioma+"/publicacions_sup.gif";
	document.writeln('<table border=0 cellpadding=0 cellspacing=0 id="taula_pestana_superior" summary=dibuix background=/V38/imatges/cat/V38fonsHomeSuperior.jpg>');
	document.writeln('<tr>');
	document.writeln('<td><img src="'+imagePath+'" name="pestana_superior" usemap="#dalt" border=0></td>');
	document.writeln('</tr>');
	document.writeln('</table>');
}

function aleatorio(inferior,superior){
    numPosibilidades = superior - inferior
    aleat = Math.random() * numPosibilidades
    aleat = Math.round(aleat)
    return parseInt(inferior) + aleat
}

function QueryString(key)
{
	sURL = location.href;
	if (sURL.indexOf("?")!=-1) {
	   sParametros = sURL.substring(sURL.indexOf("?")+1,sURL.length);
           parametro = sParametros.substring(0,sParametros.indexOf("="));
           if (parametro=="link"){
              value = sParametros.substring(sParametros.indexOf("=")+1,sParametros.length);
           }
        }
	return value;
}


function resetTheForm(){
	document.theForm.reset();
}

