function g(id) {
    if (document.getElementById) var returnVar = document.getElementById(id);
    else if (document.all) var returnVar = document.all[id];
    else if (document.layers) var returnVar = document.layers[id];
    return returnVar; 
}

// ARREGLO PNGS DEL MALDITO EXPLORER
var esExplorer=(navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win")!=-1));

function fotoPNG(idFoto,nombre,izquierda,arriba,ancho,alto,over,out,enlace,pos) {
	document.write(fotoPNG2(idFoto,nombre,izquierda,arriba,ancho,alto,over,out,enlace,pos));
}

function fotoPNG2(idFoto,nombre,izquierda,arriba,ancho,alto,over,out,enlace,pos) {

	res="";

	if (enlace>"") {
		s="cursor:pointer;";
		if (enlace.substr(0,4)=='java') c="onClick=\""+enlace+"\"";
		else c="onClick=\"javascript:document.location='"+enlace+"'\"";
	} else {s=""; c="";}

	res=res+"<div id=\""+idFoto+"\" onMouseOver=\""+over+"\" onMouseOut=\""+out+"\" "+c+" style=\"position:"+pos+";top:"+
				   arriba+"px;left:"+izquierda+"px;width:"+ancho+"px;height:"+alto+"px;"+s;
	
	if(esExplorer)
   	res=res+"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale,src='"+nombre+"')\">";
	else
    res=res+"\"><img src=\""+nombre+"\" id=\"f"+idFoto+"\" border=\"0\" width=\""+ancho+"\" height=\""+alto+
				   "\" lowsrc=\"pixel.gif\">";
	
	res=res+"</div>";
	
	return res;
}


// FUNCIONES LOGIN USUARIO

function entrar(nom,txt){
   var campo = g(nom);
   if(campo.value==txt) campo.value='';
}

function salir(nom,txt){
   var campo = g(nom);
   if(campo.value=='') campo.value=txt;
}


function entrarPassword(){
	var p = g('pass');
	var cp = g('cpass');
	var cp2 = g('cpass2');
	cp2.style.display = 'none'; cp.style.display = ''; p.focus();
}
	
function salirPassword() {
	var p = g('pass');
	var cp = g('cpass');
	var cp2 = g('cpass2');
	if(p.value == "") {cp.style.display = 'none'; cp2.style.display = '';}
}


// PREVISUALIZACION TARJETA EN FLASH

function previewFlash(m) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
    	'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" '+
		'width="264" height="169" title="Vista previa"><param name="movie" value="previewTarjeta.swf">'+
		'<param name="FlashVars" value="texto='+m+'" /><param name="quality" value="high"><param name="wmode" value="transparent">'+
		'<embed src="previewTarjeta.swf" quality="high" wmode="transparent" '+
		'pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" '+
		'type="application/x-shockwave-flash" width="264" height="169" FlashVars="texto='+m+'"></embed></object>');
}

// POP UP

function popup(s) {
	g('filtro').style.visibility='visible';
	g('popup').style.visibility='visible';
	g('fondoPopup').style.visibility='visible';
	g('popupContenido').style.height='140px';
	g('popupContenido').innerHTML=s;
}

function popupSinCancelar(s) {
	g('filtro').style.visibility='visible';
	g('popup').style.visibility='visible';
	g('fondoPopup').style.visibility='visible';
	g('botonCancelar').style.visibility='hidden';
	g('popupContenido').style.height='140px';
	g('popupContenido').innerHTML=s;
}

function popupSinNada(s) {
	g('filtro').style.visibility='visible';
	g('popup').style.visibility='visible';
	g('fondoPopup').style.visibility='visible';
	g('botonCancelar').style.visibility='hidden';
	g('botonAceptar').style.visibility='hidden';
	g('popupContenido').style.height='200px';
	g('popupContenido').innerHTML=s;
}

function cerrarPopup() {
	g('fondoPopup').style.visibility='hidden';
	g('popup').style.visibility='hidden';
	g('filtro').style.visibility='hidden';
}


// POP UP de recuperar clave
// Se realiza la recuperación en MENUINFERIOR.PHP

function perdiClave() {
	popupSinCancelar('<p style="font-size:11px; margin-top:0"><strong>Recordatorio de datos de acceso</strong></p>'+
		  '<p style="font-size:11px">Por favor, indique la dirección de correo electrónico con la que te '+
		  'registraste en Pangasa24horas:</p><form id="perdiClave" name="perdiClave" method="post" action="" '+
		  'enctype="multipart/form-data"><table width="100%" border="0" cellpadding="0" cellspacing="0">'+
		  '<tr><td><input type="text" name="perdiEmail" id="perdiEmail" class="campoAzul" /></td></tr></table>');
}

function e_perdiClave() {
	popupSinCancelar('<p style="font-size:11px; margin-top:0"><strong>Reminder of data access</strong></p>'+
		  '<p style="font-size:11px">Please list the email address with which '+
		  'you registered in <br />Pangasa24horas:</p><form id="perdiClave" name="perdiClave" method="post" action="" '+
		  'enctype="multipart/form-data"><table width="100%" border="0" cellpadding="0" cellspacing="0">'+
		  '<tr><td><input type="text" name="perdiEmail" id="perdiEmail" class="campoAzul" /></td></tr></table>');
}

function okPopUp() {
	ne=g("perdiEmail");
	if (ne.value=="") cerrarPopup();
	else g("perdiClave").submit();
}



// POP UP GRANDE

function compruebaMensaje() {
	if (g('nombre').value=='') {
		alert('Por favor, indica tu nombre.');
		g('nombre').focus(); return false;
	} else if (g('email').value=='') {
		alert('Por favor, indica tu email.');
		g('email').focus(); return false;
	} else if (g('textoMensaje').value=='') {
		alert('Por favor, indica tu consulta.');
		g('textoMensaje').focus(); return false;
	} else return true;
}

function abrirPopUpMapa() {
	g('filtroPopUpGrande').style.visibility='visible';
	g('fondoPopUpGrande').style.visibility='visible';
	g('contenidoPopUpGrande').style.visibility='visible';
	g('textoPopUpGrande').innerHTML='<iframe width="495" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=es&amp;om=1&amp;msa=0&amp;msid=102632010403471063655.000442cd208349004a314&amp;s=AARTsJpqmRDhJHRYxQaF3rqV_sG_5L9Sgw&amp;ll=37.476127,-2.761967&amp;spn=0.032696,0.084972&amp;z=13&amp;output=embed"></iframe>';
	g('textoPopUpGrande').style.overflow='hidden';
	g('tituloPopUpGrande').innerHTML=
		fotoPNG2("tit","images/logoTexto.png",0,0,100,11,"","","","relative")+'<p class="texto" '+
		'style="margin-top:5px; color:#002b45">Carretera de Caniles, s/n<br />18800 - Baza (Granada) - España</p>';

}

function abrirPopUpGrande(n) {
	g('filtroPopUpGrande').style.visibility='visible';
	g('fondoPopUpGrande').style.visibility='visible';
	g('contenidoPopUpGrande').style.visibility='visible';
	if ((n==5) || (n==10)) g('cuernoPopUpGrande2').style.visibility='visible';
	else	 			   g('cuernoPopUpGrande').style.visibility='visible';
	if (n==1) g('cuernoPopUpGrande').style.left='340px';
	if (n==6) g('cuernoPopUpGrande').style.left='440px';
	if (n==2) g('cuernoPopUpGrande').style.left='440px';
	if (n==7) g('cuernoPopUpGrande').style.left='530px';
	if (n==3) g('cuernoPopUpGrande').style.left='560px';
	if (n==8) g('cuernoPopUpGrande').style.left='650px';
	if (n==4) g('cuernoPopUpGrande').style.left='685px';
	if (n==9) g('cuernoPopUpGrande').style.left='725px';
	g('tituloPopUpGrande').innerHTML=
		fotoPNG2("tit","images/tituloPopUp"+n+".png",0,0,315,27,"","","","relative");
	g('textoPopUpGrande').style.overflow='auto';

	if (n==1) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong>Pangasa24horas</strong> es un proyecto de <strong>Pangasa</strong> '+
	'(con raz&oacute;n social Moda Infantil Mar&iacute;a L&oacute;pez S.L.), una empresa del sector textil con sede en la '+
	'Carretera de Caniles s/n de Baza (Granada); cuenta con m&aacute;s de 30 empleados y lleva en el mercado m&aacute;s de 35 '+
	'a&ntilde;os. Distribuye sus productos en todo el territorio espa&ntilde;ol y con Pangasa24horas, ha abierto las puertas al '+
	'comercio exterior online.</p>'+
	'<p class="textoGrande" style="margin-bottom:0">Puedes ponerte en contacto con nosotros a trav&eacute;s de...</p>'+
	'<p class="texto" style="margin-top:0">Nuestra direcci&oacute;n postal:<br />'+
	'<strong>Carretera de Caniles s/n | 18800 Baza  (Granada, Espa&ntilde;a) </strong>'+
	'<a href="javascript:abrirPopUpMapa();" style="text-decoration:none; color:#000000">[ver mapa]</a>'+
	'<br />Nuestro tel&eacute;fono de atenci&oacute;n al cliente:<br /><strong>902 879 027 - 958 701 975</strong>'+
	'<br />Nuestra direcci&oacute;n de correo electr&oacute;nico:<br />'+
	'<a href="mailto:pedidos@pangasa24horas.com" class="textoAzul">pedidos@pangasa24horas.com</a></p>'+
	'<p class="textoGrande" style="margin-bottom:0">o mediante el siguiente formulario de contacto...</p>'+
	'<form id="mensaje" name="mensaje" method="post" action="" enctype="multipart/form-data" '+
	'onsubmit="javascript:return compruebaMensaje();">'+
	'<input type="hidden" name="acc" value="mensaje" /><table width="97%" border="0" cellspacing="0" cellpadding="0">'+
	'<tr><td class="textoChico">nombre</td><td width="10">&nbsp;</td>'+
	'<td class="textoChico">tu direcci&oacute;n de correo electr&oacute;nico para contactar contigo</td>'+
	'</tr><tr><td><input type="text" name="nombre" id="nombre" value="" class="campoAzul" /></td>'+
	'<td>&nbsp;</td><td><input type="text" name="email" id="email" value="" class="campoAzul" /></td></tr>'+
	'<tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" class="textoChico">escribe tu consulta</td></tr>'+
	'<tr><td colspan="3"><textarea rows="5" name="textoMensaje" id="textoMensaje" class="campoAzul"></textarea></td></tr>'+
	'<tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" align="right">'+
	'<input name="enviar" type="submit" value="Enviar" class="campoAzul" style="width:auto">'+
	'</td></tr></table></td></tr></table></form>';

	if (n==2) g('textoPopUpGrande').innerHTML=
	'<p class="textoAzul" style="margin:0">Acerca del env&iacute;o 24 horas</p>'+
	'<p class="texto" style="margin-top:0"> El env&iacute;o de las canastillas se realiza para la Pen&iacute;nsula y Baleares '+
	'en 24 horas siempre que el encargo no se haga en viernes, s&aacute;bado o domingo; en estos casos, el env&iacute;o se '+
	'retrasar&aacute; en tres d&iacute;as si el pedido se ha efectuado en viernes, y dos d&iacute;as, si se ha realizado en '+
	's&aacute;bado o domingo. Los pedidos recibidos hasta las 17 horas se podr&aacute;n entregar en 24 horas, si se reciben '+
	'después, entonces se entregarán a las 48 horas.</p><p class="texto"><strong>Pangasa24horas</strong> pone a '+
	'disposici&oacute;n de sus clientes un <strong>servicio extra de env&iacute;os en s&aacute;bado</strong> que supone un '+
	'incremento de 8 euros sobre el precio final del pedido.</p><p class="texto">Para el resto de pa&iacute;ses de Europa y '+
	'dem&aacute;s continentes, la duraci&oacute;n del env&iacute;o ser&aacute; la establecida por la empresa de mensajer&iacute;a. '+
	'El importe de cada env&iacute;o seg&uacute;n el lugar es el siguiente:</p><ul>'+
	'<li class="texto"> <strong>Pen&iacute;nsula y Andorra: 7 euros</strong>. El precio de las canastillas incluye este porte.</li>'+
	'<li class="texto"><strong>Islas Baleares: +8 euros </strong>sobre el precio final de la canastilla.</li>'+
	'<li class="texto"><strong>Canarias (entre 24 horas y 48 horas): +60 euros </strong>sobre el precio final de la canastilla.</li>'+
	'<li class="texto"><strong>Ceuta y Melilla (entre 24 horas y 48 horas): +13 euros </strong>sobre el precio final de la canastilla.</li>'+
	'<li class="texto"><strong>Portugal, Islas Azores y Madeira: +3 euros</strong> sobre el precio final de la canastilla.</li>'+
	'<li class="texto"><strong>C.E.: +33 euros</strong> sobre el precio final de la canastilla.</li>'+
	'<li class="texto"><strong>Suiza, Islandia, Malta, Noruega, Liechestein, EEUU y Canad&aacute;: +45</strong> '+
	'<strong>euros</strong> sobre el precio final de la canastilla.</li><li class="texto"><strong>Resto Europa del Este, Latino'+
	' Am&eacute;rica, Asia: +69 euros</strong> sobre el precio final de la canastilla.</li><li class="texto"><strong>&Aacute;frica'+
	' +80 euros</strong> sobre el precio final de la canastilla.</li><li class="texto"><strong>Cuba: +130 euros</strong> sobre el '+
	'precio final de la canastilla. </li></ul>'+
	'<p class="texto"><strong>Pangasa24horas</strong> y por tanto, <strong>Pangasa</strong>, no se responsabiliza de las posibles '+
	'incidencias que puedan surgir en la labor desarrollada por la empresa de mensajer&iacute;a y, por tanto, de los retrasos que '+
	'se produzcan, ni tampoco de aquellas circunstacias (Causas de Fuerza Mayor) que produzcan una alteraci&oacute;n en la '+
	'normalidad de nuestro trabajo y que escapan a nuestro control, tales como:</p><ul>'+
	'<li class="texto">Huelgas, cierres patronales u otras medidas reivindicativas.</li>'+
	'<li class="texto">Conmoci&oacute;n civil, revuelta, invasi&oacute;n, ataque terrorista o amenaza terrorista, guerra '+
	'(ya haya sido declarada o no) o amenaza o preparativos de guerra.</li><li class="texto">Incendio, explosi&oacute;n, '+
	'tormenta, inundaci&oacute;n, terremoto, hundimiento, epidemia o cualquier otro desastre natural.</li>'+
	'<li class="texto">Imposibilidad de uso de trenes, barcos, aviones, transportes de motor u otros medios de transporte, '+
	'p&uacute;blicos o privados.</li>'+
	'<li class="texto">Imposibilidad de utilizar sistemas p&uacute;blicos o privados de telecomunicaciones.</li>'+
	'<li class="texto">Actos, decretos, legislaci&oacute;n, normativa o restricciones de otros gobiernos.</li>'+
	'<li class="texto">Huelga, fallos o accidentes de transporte mar&iacute;timo o fluvial, postal o cualquier otro tipo de '+
	'transporte.</li></ul>'+
	'<p class="texto"><strong>Pangasa24horas</strong> pone a disposici&oacute;n de sus clientes un n&uacute;mero de '+
	'atenci&oacute;n al cliente y una direcci&oacute;n de correo electr&oacute;nico para facilitar la comunicaci&oacute;n '+
	'bidireccional en relaci&oacute;n a consultas y resoluci&oacute;n de problemas relacionados con su pedido. </p>'+
	'<p class="texto">Una vez efectuado &eacute;ste, Pangasa24horas le mantiene informado de la evoluci&oacute;n de su pedido '+
	'mediante el env&iacute;o de correos electr&oacute;nicos y le permite seguir su encargo a trav&eacute;s de la p&aacute;gina '+
	'web, para lo que no se exige registro.</p>'+
	'<p class="textoAzul" style="margin:0">Acerca de las formas de pago</p>'+
	'<p class="texto" style="margin-top:0"> El pago del pedido se puede realizar mediante dos formas: <strong>tarjeta bancaria o '+
	'transferencia</strong>.</p><p class="texto">El pago por tarjeta bancaria es inmediato. Una vez finalizado todo el proceso de '+
	'compra, se redirige al cliente a la plataforma externa de CajaGRANADA para efectuar el pago seguro.</p>'+
	'<p class="texto">En el caso de que exista alg&uacute;n problema en el proceso, se informar&aacute; al cliente de la '+
	'incidencia para que vuelva a intentar el pago.</p><p class="texto">Una vez realizado, la preparaci&oacute;n y env&iacute;o '+
	'del pedido se pone en marcha.</p><p class="texto">Por el contrario, el pago por transferencia implica que el env&iacute;o del '+
	'pedido no se llevar&aacute; a cabo hasta que Pangasa24horas no reciba el resguardo bancario por fax o se haya comprobado el '+
	'ingreso. Por lo que las 24 horas comenzar&aacute;n a contabilizarse a partir de la recepci&oacute;n del resguardo y la '+
	'comprobaci&oacute;n de que la transferencia ha sido realizada.</p>'+
	'<p class="textoAzul" style="margin:0">Acerca de las formas de realizar la compra</p>'+
	'<p class="texto" style="margin:0"><strong> COMO USUARIO REGISTRADO</strong></p>'+
	'<p class="texto" style="margin-top:0"> El usuario registrado indicar&aacute; su correo electr&oacute;nico y la '+
	'contrase&ntilde;a con la que quiere registrarse en la web. Estos datos funcionar&aacute;n siempre como nombre de '+
	'usuario y contrase&ntilde;a para acceder a su cuenta en Pangasa24horas.</p>'+
	'<p class="texto">El registro supone disponer de ventajas tales como la obtenci&oacute;n de un 5% de descuento en la segunda '+
	'compra efectuada a trav&eacute;s de la web. Adem&aacute;s, mediante el registro, los datos de facturaci&oacute;n quedan '+
	'guardados &uacute;nicamente para las sucesivas compras; el usuario no tendr&aacute; que introducirlos de nuevo a no ser que '+
	'&eacute;stos cambien.</p>'+
	'<p class="texto" style="margin:0"><strong>COMO USUARIO NO REGISTRADO</strong></p>'+
	'<p class="texto" style="margin-top:0"> Este usuario podr&aacute; llevar a cabo su encargo sin tener que registrarse pero no '+
	'dispondr&aacute; de un 5% de descuento en la segunda compra a trav&eacute;s de la web. Adem&aacute;s, cada vez que realice un '+
	'pedido deber&aacute; introducir todos los datos de nuevo.</p>'+
	'<p class="textoAzul" style="margin:0">Acerca del stock y las devoluciones</p>'+
	'<p class="texto" style="margin-top:0"> En aquellos casos en los que se hayan agotado las existencias de alg&uacute;n '+
	'componente de su pedido, Pangasa24horas lo sustituir&aacute; por otro similar de <strong>igual o mayor valor</strong> e '+
	'informar&aacute; al cliente del cambio.</p><p class="texto">Pangasa24horas aceptar&aacute; las devoluciones de los pedidos '+
	'siempre y cuando &eacute;stos se encuentren en perfecto estado y con las etiquetas. Una vez se reciba el pedido, '+
	'Pangasa24horas reintegrar&aacute; el importe al cliente.</p><p class="texto">Las devoluciones se llevar&aacute;n a cabo por '+
	'la misma agencia de mensajer&iacute;a que ha efectuado el env&iacute;o de la canastilla. Si, por cualquier motivo, se '+
	'efect&uacute;a la devoluci&oacute;n por medio de otra empresa de mensajer&iacute;a (es decir, una empresa distinta a la del '+
	'env&iacute;o), el receptor deber&aacute; abonar la diferencia de portes que supone la segunda.</p>'+
	'<p class="textoAzul" style="margin:0">Acerca de los datos de contacto</p>'+
	'<p class="texto" style="margin-top:0"> <strong>Pangasa24horas</strong> y, por tanto, <strong>Pangasa</strong>, no se '+
	'responsabiliza de los problemas que puedan derivarse de los errores introducidos en las direcciones de facturaci&oacute;n '+
	'o de contacto. Es importante, de cara a contribuir al buen funcionamiento de la empresa de mensajer&iacute;a, indicar un '+
	'tel&eacute;fono para contactar en los casos en los que el receptor del pedido no se encuentre en la direcci&oacute;n indicada '+
	'o exista alg&uacute;n error en &eacute;sta.</p><p class="texto">No obstante, Pangasa24horas facilitar&aacute; toda la ayuda '+
	'necesaria para resolver el problema a trav&eacute;s de su tel&eacute;fono de atenci&oacute;n al cliente: <strong>902 879 027'+
	'</strong> y de su correo electr&oacute;nico: <strong>pedidos@pangasa24horas.com</strong>.</p>';
	
	if (n==3) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong>Estos son los datos legales referentes a Pangasa:</strong> </p>'+
	'<p class="texto"><strong>Raz&oacute;n social: </strong>Moda Infantil Mar&iacute;a L&oacute;pez S.L.<br />'+
	'<strong>CIF: </strong>B-18668665<br /><strong>Direcci&oacute;n: </strong>Carretera de Caniles, s/n | 18800  Baza '+
	'(Granada, Espa&ntilde;a)<br /><strong>Tel&eacute;fono: </strong>902 879 027<br /><strong>Fax: </strong>902 875 163<br />'+
	'<strong>Direcci&oacute;n de correo electr&oacute;nico:</strong> pedidos@pangasa24horas.com</p>'+
	'<p class="textoAzul">******</p><p class="texto">Los derechos de propiedad intelectual de la p&aacute;gina <strong>'+
	'www.pangasa24horas.com</strong>, as&iacute; como toda su composici&oacute;n t&eacute;cnica (c&oacute;digo fuente, bases '+
	'de datos, estructura de navegaci&oacute;n) y de dise&ntilde;o y el resto de componententes pertenecen a <strong>'+
	'Pangasa24horas</strong> y, por tanto, a <strong>Pangasa</strong>, a quien corresponde el ejercicio exclusivo de los '+
	'derechos de explotaci&oacute;n, de transformaci&oacute;n, edici&oacute;n y actualizaci&oacute;n de la p&aacute;gina en '+
	'su totalidad.</p><p class="texto"><strong>Pangasa24horas</strong> y, por tanto, <strong>Pangasa</strong>, autoriza el '+
	'uso de la web siempre que sea af&iacute;n al objetivo para el que ha sido desarrollada. Se autoriza la visualizaci&oacute;n, '+
	'impresi&oacute;n y descarga parcial del contenido de la web siempre y cuando se use de forma privada y totalmente dentro '+
	'de la legalidad, acorde con la finalidad del sitio y siempre que no se modifique ni se difunda de forma parcial o total '+
	'ning&uacute;n contenido separado de texto u otras im&aacute;genes que lo acompa&ntilde;an.</p><p class="texto"><strong>'+
	'Pangasa24horas</strong> y, por tanto, <strong>Pangasa</strong>, no se hace responsable del mal uso que el usuario pueda '+
	'realizar de la p&aacute;gina; no responder&aacute; por errores en el acceso, virus o fallos en el sistema de '+
	'navegaci&oacute;n que existan en el terminal del usuario y podr&aacute; emprender acciones legales contra el que realice '+
	'un uso fraudulento de &eacute;sta o le sirva como medio para otras acciones ilegales. Tampoco se hace responsable de los '+
	'fallos que se produzcan en el acceso a la web producidos por terceras personas o empresas y que escapen al control de '+
	'Pangasa24horas. </p><p class="texto">El usuario se compromete a no obstaculizar el uso correcto y adecuado de la web por '+
	'parte de otros usuarios; y tambi&eacute;n a no deteriorar o inutilizar total o parcialmente los programas de los que se '+
	'compone. El usuario es el &uacute;nico responsable de las infracciones en las que pueda incurrir y de los perjuicios que '+
	'pueda causar por el mal uso de la web Pangasa24horas.</p><p class="texto">Por su parte, <strong>Pangasa24horas</strong> se '+
	'compromete a poner todos los medios necesarios para mantener actualizada la informaci&oacute;n contenida en la web, aunque '+
	'no proporciona ninguna garant&iacute;a en relaci&oacute;n a la existencia de errores u omisiones en la informaci&oacute;n '+
	'publicada; &eacute;stos ser&aacute;n subsanados en cuanto tengamos conocimiento de ellos.</p><p class="texto">De igual modo, '+
	'<strong>Pangasa24horas</strong> tendr&aacute; potestad para realizar una suspensi&oacute;n de la web siempre que &eacute;sta '+
	'acci&oacute;n vaya encaminada a la resoluci&oacute;n de problemas o a la mejora, actualizaci&oacute;n o edici&oacute;n de la '+
	'informaci&oacute;n contenida en ella.</p><p class="texto">Le recomendamos que consulte habitualmente las informaciones '+
	'legales, condiciones de compra y pol&iacute;tica de privacidad, porque <strong>Pangasa24horas</strong> se reserva el derecho '+
	'a modificar, actualizar o mejorar &eacute;stas para un mejor servicio al usuario.</p><p><span class="texto">Pese a todo, '+
	'<strong>Pangasa24horas </strong>pone a disposici&oacute;n de los clientes un servicio de atenci&oacute;n al cliente y un '+
	'correo electr&oacute;nico en los que contactar para solucionar o recibir informaci&oacute;n sobre cualquier tipo de '+
	'problema.</span>&nbsp; <strong>&nbsp;&nbsp;&nbsp;</strong></p>';

	if (n==4) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong class="textoAzul">01/</strong><strong> Una vez que he realizado el pago de mi '+
	'canastilla (v&iacute;a transferencia o v&iacute;a tarjeta bancaria), &iquest;c&oacute;mo s&eacute; que se ha entregado al '+
	'destinatario?&nbsp; </strong> <br />Pangasa24horas te mantendr&aacute; informado del estado del pedido en cada momento (desde '+
	'la elaboraci&oacute;n de la canastilla hasta la recepci&oacute;n y firma del destinatario) mediante un mensaje de correo '+
	'electr&oacute;nico o un sms. Adem&aacute;s, Pangasa24horas pone a disposici&oacute;n de sus clientes (est&eacute;n '+
	'registrados o no en la p&aacute;gina) el servicio de seguimiento del pedido a trav&eacute;s de la web [ver en el men&uacute; '+
	'<strong>tus pedidos</strong>].&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">02/</strong><strong> &iquest;Qu&eacute; ocurre si lo env&iacute;an a la '+
	'direcci&oacute;n que he indicado y no se encuentran los destinatarios?</strong> <br />La empresa de mensajer&iacute;a entrega '+
	'la canastilla en la direcci&oacute;n exacta que nos indica el cliente; en cualquier caso, si existe alg&uacute;n error en la '+
	'informaci&oacute;n postal del destinatario final o si no se encuentra en su domicilio, en la cl&iacute;nica u hospital, etc.'+
	', la propia empresa de mensajer&iacute;a informa a Pangasa24horas de la incidencia. Conocido esto, nos ponemos en contacto '+
	'con nuestro cliente para que nos vuelva a facilitar una nueva direcci&oacute;n donde reexpedir la canastilla; naturalmente, '+
	'el plazo de 24 horas comenzar&aacute; a contar de nuevo a partir de la reexpedici&oacute;n, manteniendo informado al cliente '+
	'del estado del pedido en cada momento.</p>'+
	'<p class="texto"><strong class="textoAzul">03/</strong><strong> Si el nacimiento se produce un viernes y deseo que le '+
	'env&iacute;en la canastilla el s&aacute;bado a la cl&iacute;nica, &iquest;qu&eacute; debo hacer?</strong> <br />Es '+
	'importante que leas las <strong>condiciones de compra </strong>antes de realizar el encargo de tu canastilla. En ellas se '+
	'especifica en qu&eacute; consiste el env&iacute;o 24 horas de Pangasa. <br />Pangasa24horas trabaja de lunes a viernes con un '+
	'precio fijo para los portes: 7 euros (ya incluidos en el precio de las canastillas); y en principio, salvo que el cliente '+
	'indique otra opci&oacute;n de env&iacute;o, el env&iacute;o predeterminado es nacional (a Pen&iacute;nsula y Baleares), de '+
	'lunes a viernes, que tardar&aacute; un m&aacute;ximo de 24 horas en entregarse, excepto aquellos pedidos realizados en '+
	'viernes que no se entregar&aacute;n el s&aacute;bado sino el lunes. Por este motivo, Pangasa24horas pone a tu '+
	'disposici&oacute;n un servicio especial de entrega en s&aacute;bado que supone un incremento de 8 euros sobre el precio '+
	'total de la canastilla (incluidos en &eacute;ste los 7 euros del env&iacute;o nacional); as&iacute; que, si deseas que '+
	'reciban la canastilla en s&aacute;bado, tendr&aacute;s que seleccionar en el tipo de env&iacute;o:<strong> env&iacute;o '+
	'nacional en s&aacute;bado</strong> y nosotros nos encargamos de todo.</p>'+
	'<p class="texto"><strong class="textoAzul">04/</strong><strong> &iquest;Qu&eacute; ocurre cuando la direcci&oacute;n del '+
	'destinatario es correcta y &eacute;ste no se encuentra en ella?</strong> <br />Gracias a la informaci&oacute;n que nos '+
	'facilitas en el cuestionario de env&iacute;o, disponemos del tel&eacute;fono de contacto del destinatario; de este modo, '+
	'cuando el mensajero no logra entregar la canastilla, se pone en contacto con &eacute;l para avisarle de que va a recibir '+
	'un regalo.&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">05/</strong><strong> &iquest;Qu&eacute; deben hacer si reciben la canastilla '+
	'en mal estado a causa de una manipulaci&oacute;n incorrecta por la empresa de mensajer&iacute;a?</strong> <br />Pangasa24horas '+
	'garantiza 100% el env&iacute;o y recepci&oacute;n de las canastillas en perfectas condiciones. Por tanto, para avisar al '+
	'destinatario, cada canastilla lleva pegada en un lugar visible una indicaci&oacute;n para que, antes de firmar el '+
	'albar&aacute;n de recepci&oacute;n al mensajero, no la acepten en caso de que les llegue en mal estado. A '+
	'continuaci&oacute;n, la empresa de mensajer&iacute;a nos informa de los motivos por los que no se ha efectuado la entrega e '+
	'iniciamos el proceso de nuevo, volviendo a repetir el env&iacute;o de una canastilla al mismo destinatario.&nbsp;&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">06/</strong><strong> &iquest;Puedo pagar mediante una transferencia en lugar de '+
	'tarjeta?</strong> <br />Existen dos formas de pago a trav&eacute;s de la web: pago con tarjeta bancaria y pago por '+
	'transferencia. En el primer caso, s&oacute;lo debe tener disponible su tarjeta bancaria seg&uacute;n las admitidas por la '+
	'plataforma de pago (se especifican a lo largo de todo el proceso de compra) y seguir los pasos. Las 24 horas comienzan a '+
	'contar a partir de que se finalice el proceso de compra v&iacute;a web. <br />En el segundo caso, se te especificar&aacute; el '+
	'n&uacute;mero de cuenta al que realizar la transferencia; una vez efectuada, debes enviar por fax el resguardo bancario. '+
	'Las 24 horas comienzan a contar a partir de que nosotros recibamos el resguardo y lo comprobemos.</p>'+
	'<p class="texto"><strong class="textoAzul">07/</strong><strong> &iquest;Por qu&eacute; no puedo comprar distintas canastillas '+
	'en el mismo proceso de compra?</strong><br />Pangasa24horas garantiza que un beb&eacute; no recibe '+
	'la misma canastilla, para ello es necesario que la personalicemos a trav&eacute;s de un proceso de compra &uacute;nico para '+
	'cada una, en la que podr&aacute;s seleccionar los detalles y el texto de la tarjeta de felicitaci&oacute;n.<br /> '+
	'S&iacute; puedes comprar varias unidades de una misma canastilla o varias canastillas diferentes en el mismo proceso de '+
	'compra, pero todas llevar&aacute;n los mismo datos de env&iacute;o y el mismo texto de felicitaci&oacute;n en la tarjeta. '+
	'<br />Por tanto, si deseas comprar canastillas distintas dirigidas a distintos receptores, deber&aacute;s realizar para cada '+
	'una de ellas un proceso de compra nuevo. Un consejo: si te registras, evitar&aacute;s tener que introducir de nuevo los '+
	'datos de facturaci&oacute;n.</p>';
	
	if (n==5) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0">Todos los derechos de propiedad industrial e intelectual de la p&aacute;gina '+
	'<strong>www.pangasa24horas.com</strong> y todo su contenido pertenecen a <strong>Pangasa24horas</strong> y, por tanto, a '+
	'<strong>Pangasa</strong>.</p><p class="texto">El uso de la web por un tercero, le infunde a &eacute;ste condici&oacute;n de '+
	'usuario y por tanto, deber&aacute; aceptar todas las condiciones </p><p class="texto"><strong>Pangasa24horas</strong> publica '+
	'en su apartado <strong>Libro de visitas</strong>, textos y fotos de terceras personas que previamente han aceptado las '+
	'siguientes condiciones de env&iacute;o de im&aacute;genes y publicaci&oacute;n de comentarios:</p><p class="texto">- '+
	'<strong>Pangasa24horas</strong> se reserva el derecho a modificar o eliminar las entradas que considere que no se '+
	'adec&uacute;an a la filosof&iacute;a de la empresa. El usuario ser&aacute; informado a trav&eacute;s de un correo '+
	'electr&oacute;nico de cualquier modificaci&oacute;n que pueda sufrir su comentario o fotograf&iacute;a. </p>'+
	'<p class="texto">- <strong>Pangasa24horas</strong> no se responsabiliza ni directa ni subsidiariamente del menoscabo '+
	'en los derechos de autor que pueda suponer la publicaci&oacute;n de las fotograf&iacute;as en la web.</p><p class="texto">- '+
	'<strong>Pangasa24horas</strong> exige que la publicaci&oacute;n de fotograf&iacute;as de menores vaya amparada por el '+
	'conocimiento y la aceptaci&oacute;n de los padres o tutores; de lo contrario, <strong>Pangasa24horas</strong> se reserva el '+
	'derecho a no publicar las fotograf&iacute;as o a retirarlas inmediatamente de la web.</p><p class="texto">- El contenido de '+
	'las fotograf&iacute;as debe ajustarse a la filosof&iacute;a de la p&aacute;gina y debe estar dirigido a mostrar la ropa de '+
	'<strong>Pangasa</strong>.</p><p class="textoAzul" style="margin-bottom:0">Datos obtenidos a trav&eacute;s de la web</p>'+
	'<p class="texto" style="margin-top:0">Con independencia de lo que se indique en otra zona de la web, la aceptaci&oacute;n e '+
	'introducci&oacute;n de datos personales por parte del usuario en la web, autoriza a <strong>Pangasa24horas</strong> a '+
	'gestionar estos datos para el uso especificado en cada caso. Esto implica que los datos ser&aacute;n tratados '+
	'confidencialmente y se intentar&aacute; evitar la alteraci&oacute;n o p&eacute;rdida de &eacute;stos.</p><p class="texto">'+
	'El usuario registrado acepta que sus datos sean guardados para futuras sesiones o compras en <strong>Pangasa24horas</strong>.'+
	'</p>';
	
	if (n==6) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong>Pangasa24horas</strong> es un proyecto de <strong>Pangasa</strong> '+
	'(con raz&oacute;n social Moda Infantil Mar&iacute;a L&oacute;pez S.L.), una empresa del sector textil con sede en la '+
	'Carretera de Caniles s/n de Baza (Granada); cuenta con m&aacute;s de 30 empleados y lleva en el mercado m&aacute;s de 35 '+
	'a&ntilde;os. Distribuye sus productos en todo el territorio espa&ntilde;ol y con Pangasa24horas, ha abierto las puertas al '+
	'comercio exterior online.</p>'+
	'<p class="textoGrande" style="margin-bottom:0">Puedes ponerte en contacto con nosotros a trav&eacute;s de...</p>'+
	'<p class="texto" style="margin-top:0">Nuestra direcci&oacute;n postal:<br />'+
	'<strong>Carretera de Caniles s/n | 18800 Baza  (Granada, Espa&ntilde;a) </strong>'+
	'<a href="javascript:abrirPopUpMapa();" style="text-decoration:none; color:#000000">[ver mapa]</a>'+
	'<br />Nuestro tel&eacute;fono de atenci&oacute;n al cliente:<br /><strong>902 879 027 - 958 701 975</strong>'+
	'<br />Nuestra direcci&oacute;n de correo electr&oacute;nico:<br />'+
	'<a href="mailto:pedidos@pangasa24horas.com" class="textoAzul">pedidos@pangasa24horas.com</a></p>'+
	'<p class="textoGrande" style="margin-bottom:0">o mediante el siguiente formulario de contacto...</p>'+
	'<form id="mensaje" name="mensaje" method="post" action="" enctype="multipart/form-data" '+
	'onsubmit="javascript:return compruebaMensaje();">'+
	'<input type="hidden" name="acc" value="mensaje" /><table width="97%" border="0" cellspacing="0" cellpadding="0">'+
	'<tr><td class="textoChico">nombre</td><td width="10">&nbsp;</td>'+
	'<td class="textoChico">tu direcci&oacute;n de correo electr&oacute;nico para contactar contigo</td>'+
	'</tr><tr><td><input type="text" name="nombre" id="nombre" value="" class="campoAzul" /></td>'+
	'<td>&nbsp;</td><td><input type="text" name="email" id="email" value="" class="campoAzul" /></td></tr>'+
	'<tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" class="textoChico">escribe tu consulta</td></tr>'+
	'<tr><td colspan="3"><textarea rows="5" name="textoMensaje" id="textoMensaje" class="campoAzul"></textarea></td></tr>'+
	'<tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" align="right">'+
	'<input name="enviar" type="submit" value="Enviar" class="campoAzul" style="width:auto">'+
	'</td></tr></table></td></tr></table></form>';
	
	if (n==7) g('textoPopUpGrande').innerHTML=
	'<p class="textoAzul" style="margin:0">About 24 hours of shipment</p>'+
	'<p class="texto" style="margin-top:0"> The shipment of the baskets in the peninsula and the Balearic Islands '+
	'is within 24 hours, always that the order is not made on a Friday, Saturday or Sunday, in these cases, the shipment '+
	'will be delayed by three days if the request was made on a Friday, and two days if it has done on '+
	'Saturday or Sunday. Orders received until 5:00 p.m. hours can be delivered within 24 hours, if received '+
	'after, then will be delivered within 48 hours.</p><p class="texto"><strong>Pangasa24horas</strong> offers its '+
	'customers an <strong>extra service for shipments on Saturday</strong> makes up an '+
	'increase of 8 euros on the final price of the order.</p><p class="texto">For the other countries of Europe and '+
	'other continents, the length of transmission will be provided for by the courier company. '+
	'The amount of each shipment as the place is as follows:</p><ul>'+
	'<li class="texto"> <strong>Peninsula and Andorra: 7 euros</strong>. The price of the baskets includes this shipping cost.</li>'+
	'<li class="texto"><strong>Balearic Islands: +8 euros </strong>on the final price of the basket.</li>'+
	'<li class="texto"><strong>Canary Islands (between 24 hours and 48 hours): +13 euros </strong> on the final price of the basket.</li>'+
	'<li class="texto"><strong>Ceuta and Melilla (between 24 hours and 48 hours): +60 euros </strong> on the final price of the basket.</li>'+
	'<li class="texto"><strong>Portugal, Islas Azores y Madeira: +3 euros</strong> on the final price of the basket.</li>'+
	'<li class="texto"><strong>EC: +33 euros</strong> on the final price of the basket.</li>'+
	'<li class="texto"><strong>Switzerland, Iceland, Malta, Norway, Liechestein, USA and Canada: +45</strong> '+
	'<strong>euros</strong> on the final price of the basket.</li><li class="texto"><strong>Rest Eastern Europe, Latin'+
	' America and Asia: +69 euros</strong> on the final price of the basket.</li><li class="texto"><strong>Africa'+
	' +80 euros</strong> on the final price of the basket.</li><li class="texto"><strong>Cuba: +130 euros</strong> on the '+
	'final price of the basket. </li></ul>'+
	'<p class="texto"><strong>Pangasa24horas</strong> and therefore, <strong>Pangasa</strong>, is not responsible for any incidents '+
	'that may arise in the work of the courier company, and therefore of the delays, '+
	'nor those circumstances (Causes of Force Majeure) produce an alteration '+
	'in the normality of our work and beyond our control, such as:</p><ul>'+
	'<li class="texto">Strikes, lockouts or other measures vindications.</li>'+
	'<li class="texto">Shock civil revolt, invasion, terrorist attack or terrorist threat, war '+
	'(and has been declared or not) or a threat or war preparations.</li><li class="texto">The fire, explosion, '+
	'storm, flood, earthquake, collapse, epidemic or other natural disaster.</li>'+
	'<li class="texto">Inability to use trains, boats, aircraft, motor transport or other means of transport, '+
	'public or private.</li>'+
	'<li class="texto">Inability to use both public and private telecommunications.</li>'+
	'<li class="texto">Acts, decrees, laws, regulations or restrictions on other governments.</li>'+
	'<li class="texto">Strike, failures or accidents or river shipping, mail or any other means '+
	'of transport.</li></ul>'+
	'<p class="texto"><strong>Pangasa24horas</strong> offers its customers a number of customer service '+
	'and an e-mail address to facilitate two-way communication '+
	'in relation to consultation and resolution of problems related to your request. </p>'+
	'<p class="texto">Once it, Pangasa24horas keeps you informed of developments in your order '+
	'by sending e-mails and lets you follow your order through the '+
	'the website, which does not require registration.</p>'+
	'<p class="textoAzul" style="margin:0">About forms of payment</p>'+
	'<p class="texto" style="margin-top:0"> Payment of the order can be done through two forms: <strong>card or '+
	'bank transfer</strong>.</p><p class="texto">Payment by credit card is immediate. Once the whole process of '+
	'purchase, the customer is redirected to the platform external CajaGRANADA for payment insurance.</p>'+
	'<p class="texto">In the event that there is any problem in the process, the client of the incidence '+
	'to try payment.</p><p class="texto">Once done, the preparation and dispatch '+
	'of the order is set in motion.</p><p class="texto">By contrast, the payment transfer implies that the order shipment '+
	'will not take place until Pangasa24horas not receiving the bank receipt by fax or income has been found. '+
	'With 24 hours begin to run upon receipt of receipt and verification '+
	'that the transfer has been completed.</p>'+
	'<p class="textoAzul" style="margin:0">About forms of purchase</p>'+
	'<p class="texto" style="margin:0"><strong> REGISTERED AS USER</strong></p>'+
	'<p class="texto" style="margin-top:0"> The registered user indicate your email and '+
	'password with which you want to register on the website. These data always work as username '+
	'and password to access your account Pangasa24horas.</p>'+
	'<p class="texto">Record supposed to have advantages such as acquisition of a 5% discount on the second '+
	'purchase made through the website. In addition, through registration, billing information are stored '+
	'only for successive purchases, the user does not need to input them again unless '+
	'they change.</p>'+
	'<p class="texto" style="margin:0"><strong>LIKE A USER NOT REGISTERED</strong></p>'+
	'<p class="texto" style="margin-top:0"> This user will be able to carry out its task without having to register but will not '+
	'have a 5% discount on the second purchase through the Web. In addition, each time you make a '+
	'request you must enter all the data again.</p>'+
	'<p class="textoAzul" style="margin:0">About the stock and returns</p>'+
	'<p class="texto" style="margin-top:0"> In those cases have been exhausted stocks of any '+
	'component of your order, what Pangasa24horas replaced with a similar one <strong>of equal or greater value</strong> and '+
	'inform the customer of the change.</p><p class="texto">Pangasa24horas accept returns of orders '+
	'as long as they are in perfect condition and with the labels. Once the request is received, '+
	'the amount Pangasa24horas surrendered to the client.</p><p class="texto">Refunds will be conducted '+
	'by the same agency that has made messaging sending the basket. If, for any reason, '+
	'is the return through another courier company (ie, a separate enterprise to the '+
	'shipment), the recipient must pay the difference in shipping posed by the second.</p>'+
	'<p class="textoAzul" style="margin:0">About contact information</p>'+
	'<p class="texto" style="margin-top:0"> <strong>Pangasa24horas</strong> and therefore, <strong>Pangasa</strong>, it is not '+
	'responsible for any problems that may arise from mistakes made in the billing addresses '+
	'or contact. It is important, in order to contribute to the smooth functioning of the enterprise messaging, '+
	'indicate a phone to contact in cases where the recipient of the order is not in the direction indicated, '+
	'or there is any error in it.</p><p class="texto">However, Pangasa24horas provide all necesary'+
	'assistance to resolve the problem through its telephone customer service: <strong>+34 958 701 975'+
	'</strong> and your email: <strong>pedidos@pangasa24horas.com</strong>.</p>';
	
	if (n==8) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong>These are the legal data concerning to Pangasa:</strong> </p>'+
	'<p class="texto"><strong>Company name: </strong>Moda Infantil  Mar&iacute;a L&oacute;pez S.L.<br />'+
	'<strong>CIF: </strong>B-18668665<br /><strong>Address: </strong>Carretera de  Caniles, s/n | 18800  Baza '+
	'(Granada, Spain)<br /><strong>Phone: </strong>+34 958 701 975<br /><strong>Fax: </strong>902 875 163<br />'+
	'<strong>E-mail address:</strong> pedidos@pangasa24horas.com</p>'+
	'<p class="textoAzul">******</p><p class="texto">The intellectual property rights of the page <strong>'+
	'www.pangasa24horas.com</strong>, along with all of its technical composition (source code, databases, '+
	'navigation structure) and design and the rest of components belong to <strong>'+
	'Pangasa24horas</strong> and therefore to <strong>Pangasa</strong>, who owns the exclusive exercise of the '+
	'rights of exploitation, processing, editing and updating of the whole page. '+
	'</p><p class="texto"><strong>Pangasa24horas</strong> and therefore, <strong>Pangasa</strong>, authorize the '+
	'use of the web wherever related to the objective for which it was developed. It authorizes the display, '+
	'printing and unloading part of the contents of the site as long as they use at private and completely within the law '+
	'consistent with the purpose of the site and provided that there is no change or be disseminated either partially or completely '+
	'no content separate text or other images that accompany it.</p><p class="texto"><strong>'+
	'Pangasa24horas</strong> and therefore <strong>Pangasa</strong>, is not responsible for the misuse that the '+
	'user can perform on the page; not be liable for errors in access, viruses or bugs in the navigation system'+
	'that exist in the user&#39;s terminal and may initiate legal action against you make fraudulent use of this or '+
	'serves as a means other illegal actions. Not is responsible for '+
	'the failures that occur in access to the web produced by third persons or firms and beyond the control '+
	'of Pangasa24horas. </p><p class="texto">You agree not to hinder the correct and appropriate use of the site '+
	'by other users and also not to degrade or disable all or part of the programme which is '+
	'composed. The user is solely responsible for the offences in which he may incur and the damage '+
	'it could cause by misuse of the web Pangasa24horas.</p><p class="texto">For its part, <strong>Pangasa24horas</strong> is '+
	'committed to take whatever action is necessary to keep the information contained on the web but does '+
	'not provide any guarantee in relation to the existence of errors and omissions in the information '+
	'published they will be corrected as soon as we have knowledge of them. </p><p class="texto">Similarly, '+
	'<strong>Pangasa24horas</strong> will be empowered to carry out a moratorium on the Web provided '+
	'that this action should aim at solving problems or improving, updating or editing '+
	'information contained there in.</p><p class="texto">We recommend that you usually legal '+
	'information, buying conditions and privacy policy, because <strong>Pangasa24horas</strong> reserves the right '+
	'to modify, update or improve them for a positive user experience.</p><p><span class="texto">Nevertheless, '+
	'<strong>Pangasa24horas </strong>offers its customers a customer service and an '+
	'email in which to solve contact or receive information on any problems. '+
	'</span>&nbsp; <strong>&nbsp;&nbsp;&nbsp;</strong></p> ';
	
	if (n==9) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0"><strong class="textoAzul">01/</strong><strong> Once I made my payment '+
	'basket (via transfer or via credit card), how do I know it was delivered to the recipient?&nbsp; </strong>'+
	' <br />Pangasa24horas will keep you informed of the order status at any given time (since '+
	'the development of the basket until the receipt and signature of recipient) through an email '+
	'or SMS. In addition, Pangasa24horas offers its customers (whether '+
	'registered or not on the page), the tracking service of the order through the Web [see on the menu '+
	'<strong>your orders</strong>].&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">02/</strong><strong> If I send it '+
	'to the address indicated and have not found the recipients?</strong> <br />The courier company delivers '+
	'the basket in the exact address tells the customer, in any case, if there was any mistake in the '+
	'address information of the ultimate consignee or if you are not at home, at the clinic or hospital, and so on.'+
	', the company itself messaging Pangasa24horas informed of the incident. Known this, we will contact '+
	'our client to return us to provide a new direction where readdressed basket; course, '+
	'within 24 hours start to run again from the shipment, maintaining customer informed '+
	'of the status of the request at every moment.</p>'+
	'<p class="texto"><strong class="textoAzul">03/</strong><strong> If the birth occurs on a Friday and I want to '+
	'send you the basket on Saturday at the clinic, what should I do?</strong> <br />It is '+
	'important that you read the <strong>terms of purchase </strong>before making the order of your basket. They '+
	'specify what the dispatch 24 hours Pangasa. <br />Pangasa24horas works Monday through Friday with '+
	'a fixed price for postage: 7 euros (already included in the price of the baskets), and in principle, unless the context otherwise '+
	'indicates customer shipping option, sending default is a national (and Peninsula Baleares), '+
	'Monday through Friday, which will take up to 24 hours to surrender, except for those orders '+
	'placed on Friday that were not delivered on Saturday but on Monday. For this reason, Pangasa24horas available '+
	'to you for a special delivery Saturday an increase of 8 euros on the full price '+
	'of the basket (the latter included in the shipment EUROS 7 nationally), so if you want '+
	'to receive basket on a Saturday, you will have to choose the type of transmission '+
	'sending National</strong> on Saturday and we take care of everything.</p>'+
	'<p class="texto"><strong class="textoAzul">04/</strong><strong> What happens when the recipient&#39;s address '+
	'is correct and it is not in it? </strong> <br />Thanks to the information '+
	'you provide in the questionnaire shipping, we have the contact telephone number of the recipient, so that, '+
	'when the messenger is unable to deliver the basket, he is put in touch with him to tell that this is going to receive '+
	'a gift.&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">05/</strong><strong> How do if they receive the basket '+
	'in poor condition due to improper handling by the courier company?</strong> <br />Pangasa24horas '+
	'guarantees 100% sending and receiving the baskets in perfect condition. Therefore to warn '+
	'the recipient, each basket takes stuck in a visible place for an indication that, before signing the receipt'+
	'of remittance the messenger, not accept it if it arrives in poor condition. Then, the courier company informs us of '+
	'the reasons why it has not made the delivery and started the process again returning to repeat '+
	'the dispatch of a basket at the same recipient.&nbsp;&nbsp; </p>'+
	'<p class="texto"><strong class="textoAzul">06/</strong><strong> &iquest;/Can I pay by a transfer rather '+
	'than card?</strong> <br />There are two forms of payment via the Web: payment by credit card and '+
	'bank transfer payment. In the first case, should only be available from your credit card according to the admission by the '+
	'payment platform (specified throughout the buying process) and follow the steps. 24 hours beginning on '+
	'the date of the completion of the purchase process via the Web. <br />In the second case, you specify the '+
	'account number to which to transfer, once made, should be sent by fax stewardship banking. '+
	'24 hours beginning on the date that we receive the shelter and check.</p>'+
	'<p class="texto"><strong class="textoAzul">07/</strong><strong> &iquest;Why can not I buy different baskets '+
	'in the same buying process?</strong><br />Pangasa24horas ensures that a child does not receive '+
	'the same basket, this requires we personalize it through a single purchasing process for '+
	'each, where you can select the details and the text of the greeting card.<br /> '+
	'You can buy several units of the same basket or several different baskets in the same buying '+
	'process, but all baskets will have the same data transmission and the same text greeting on the card. '+
	'<br />Therefore, if you want to buy different baskets aimed at different receivers, you must make to each '+
	'of them a new purchase process. A word of advice: if you register will prevent having to re-enter your '+
	'billing information.</p>';
	
	if (n==10) g('textoPopUpGrande').innerHTML=
	'<p class="texto" style="margin-top:0">All proprietary intellectual '+
	'<strong>www.pangasa24horas.com</strong> of the page and all its contents belong to <strong>Pangasa24horas</strong> and therefore '+
	'to <strong>Pangasa</strong>.</p><p class="texto">The use of the site by a third person, it gives him status '+
	'user and therefore must accept all the conditions </p><p class="texto"><strong>Pangasa24horas</strong> published '+
	'in paragraph <strong>Guestbook</strong>, , text and photos of other people who have previously agreed to '+
	'the following conditions of sending pictures and publication of comments:</p><p class="texto">- '+
	'<strong>Pangasa24horas</strong> Pangasa24horas reserves the right to edit or delete entries found not fit with '+
	'the philosophy of the company. The user will be informed via an e-mail from '+
	'any changes that might suffer your comment or photograph. </p>'+
	'<p class="texto">- <strong>Pangasa24horas</strong> not responsible directly or alternatively the erosion '+
	'in copyright likely to involve the publication of the photographs on the website.</p><p class="texto">- '+
	'<strong>Pangasa24horas</strong> requires that the publication of photographs of minors is covered by the '+
	'knowledge and acceptance of their parents or guardians; otherwise, <strong>Pangasa24horas</strong> reserves the right '+
	'not to publish photographs or withdraw immediately from the website.</p><p class="texto">- The content of '+
	'the photographs should conform to the philosophy of the page and must be addressed to show clothes '+
	'<strong>Pangasa</strong>.</p><p class="textoAzul" style="margin-bottom:0">Data obtained through the Web</p>'+
	'<p class="texto" style="margin-top:0">Regardless of what was indicated in another area of the site, acceptance and '+
	'and introduction of personal data by the user on the Web, authorizes <strong>Pangasa24horas</strong> to '+
	'manage this data for the use specified in each case. This implies that the data will be treated '+
	'confidentially and will seek to prevent the alteration or loss thereof.</p><p class="texto">'+
	'The registered user agrees that their data is stored for future meetings or shopping <strong>Pangasa24horas</strong>.'+
	'</p>';
	
	g('textoPopUpGrande').scrollTop=0;
}

function cerrarPopUpGrande() {
	g('filtroPopUpGrande').style.visibility='hidden';
	g('fondoPopUpGrande').style.visibility='hidden';
	g('contenidoPopUpGrande').style.visibility='hidden';
	g('cuernoPopUpGrande').style.visibility='hidden';
	g('cuernoPopUpGrande2').style.visibility='hidden';
}
