function DoSomething() {
	
}

function carga_producto(indice) {
	$('.caja_producto').tabSwitch('moveTo',{index : indice}, DoSomething());
}

function salta(url) {
	window.location = url;	
	document.location.href = url;
}

function carga_logo() {
	var archivo = 'swfs/logo.swf';
	var ancho = 180;
	var alto = 60;
	var capa = 'logo';
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+ancho+'" height="'+alto+'" title="">';
	str += '<param name="movie" value="'+archivo+'" />';
	str += '<param name="quality" value="high" />';
	str += '<embed src="'+archivo+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'"></embed>';
	str +='</object>';
	document.getElementById(capa).innerHTML = str;
}

function carga_banner(imagen) {
	str = '<img src="banners_secs/'+imagen+'" border="0" />';
	document.getElementById("banners_seccion_container").innerHTML = str;
}

function ImgPopUp(string, width, height)
{
	var winl = (screen.width-width)/2;
  	var wint = (screen.height-height)/2;
	eval('window.open(\'popup.php?file='+string+'\', \'ImgPopUpWin\', \'scrollbars=no, status=no, width='+width+', height='+height+',top= '+ wint+', left=' + winl+', resizable=no\')');
}

function gana_foco(objeto) {
	objeto.className = "campo_contacto_focus";
}

function pierde_foco(objeto) {
	objeto.className = "campo_contacto";
}

function change_ev(objeto) {
	//alert(objeto.className);
	switch(objeto.className)
	{
		case "banner_preview":
			objeto.className = "banner_preview_over";
		break;
		
		case "banner_preview_over":
			objeto.className = "banner_preview";
		break;
	}
}

function carga_foto(foto) {
	str = '<img src="productos_thumbs/'+foto+'" class="marco_producto" />';
	document.getElementById("fotos_der").innerHTML = str;
}
