<!--
var sUrlServidor = "/";

function cierraAlerta(){
	if(document.getElementById("divMsgBox")){
		document.getElementById("divInvisible").style.visibility='hidden';
		document.getElementById("divInvisible").style.display='none';
		document.getElementById("divMsgBox").style.visibility='hidden';
		document.getElementById("divMsgBox").style.display='none';
	}
}

function abreteSesamo(miPagina, miNombre, w, h, misParams){
	var scroll='no', pos='center', win=null;
	if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',directories=no,status=no,menubar=no,toolbar=no, scrollbars=yes, ' + misParams;
	win=window.open(miPagina,miNombre,settings);
	if(win.focus){win.focus();}
}

function swapClass(el, class1, class2) { 
	if (el.className) 
	el.className = (el.className == class1) ? class2 : class1; 
} 

function aCesta(sProducto,sCantidad){
	var sUrl = "cesta.asp?sProducto=" + sProducto + "&sCantidad=" + sCantidad;
	abreteSesamo(sUrl,'CESTA',500,550,'status=no');
}

function compruebaCesta(){
	if(document.location!='eShop.asp'){
		document.location='eShop.asp';
	}
	
	aCesta(0,0);
}

function abreDetalle(idPrd){
	var sUrl = "prod_amp.asp?id=" + idPrd;
	abreteSesamo(sUrl,"PROD2",500,550,"scrollbars=yes");
}

function confirmaCesta(){
	var sUrl = "cesta.asp?sAccion=DATOS"
	this.window.document.location=sUrl;
}

function confirmaDatosCliente(){
	var sUrl = "cesta.asp?sAccion=CONFIRMAR"
	this.window.document.location=sUrl;
}

function descargaFichero(sPedidoId, boton){
	var sUrl = "descargaFichero.asp?sPedidoId=" + sPedidoId;
	this.window.document.location=sUrl;
}

function navegaNoticias(iNoticia){
	document.location = "news.asp?iNoticia=" + iNoticia;
}

function visualizaFlyer(sImg, sTipo){
	if(sImg!=""){
		var sUrl = "zoom.asp?imgId=" + sImg + "&sTipo=" + sTipo;
		abreteSesamo(sUrl, 'FLYER', 620, 450, ' scrollbars=yes, resizable=yes');
	}
}
function escondeLista(){
	document.all['divLista'].style.visibility='hidden';
	document.all['divLista'].style.display='none';
}

function getAudio(tema){
	//cargamos audio
	var s3 = new SWFObject(sUrlServidor + "mp3player.swf", "mpl", "420", "20", "7");
//	s3.addVariable("file","../public/" + tema);
	s3.addVariable("file","http://www.speckamusic.com/public/" + tema);
	s3.addVariable("repeat","false");
	s3.addVariable("showdigits","true");
	s3.addVariable("autostart","true");
//			document.getElementById('player3').innerHTML = s3.write("player3");
	s3.write("player3");
}
-->