// Carga de hoja de estilos dependiendo de hora del cliente

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function popUp(opc){
	switch(opc)
	{
		case 1: // PopUp personaliza
		window.open(path+'cat/varis/personalitza.htm' , 'popUpPers' , 'width=500,height=300,scrollbars=NO')
		break;
		
		case 2: // PopUp form instyle
		window.open(path+'cat/instyle/form.htm' , 'popUp' , 'width=500,height=660,scrollbars=NO')
		break;
		
		case 3: // PopUp avis legal
		window.open(path+'cat/varis/avislegal.htm' , 'popUp' , 'width=500,height=550,scrollbars=NO')
		break;
		
		case 4: // PopUp personaliza castellà
		window.open(path+'esp/varis/personalitza.htm' , 'popUp' , 'width=500,height=300,scrollbars=NO')
		break;
		
		case 5: // PopUp form instyle castellà
		window.open(path+'esp/instyle/form.htm' , 'popUp' , 'width=500,height=660,scrollbars=NO')
		break;
		
		case 6: // PopUp avis legal castellà
		window.open(path+'esp/varis/avislegal.htm' , 'popUp' , 'width=500,height=550,scrollbars=NO')
		break;
		
		case 7: // PopUp form franquicias català
		window.open(path+'cat/uneixte/form_franq.htm' , 'popUp' , 'width=550,height=650,scrollbars=NO')
		break;
		
		case 8: // PopUp form franquicias castellà
		window.open(path+'esp/uneixte/form_franq.htm' , 'popUp' , 'width=550,height=650,scrollbars=NO')
		break;
		
		case 9: // PopUp Pepa & Pepo
		window.open(path+'pepapepo.htm' , 'popUp' , 'width=630,height=460,scrollbars=NO')
		break;
		
		case 10: // PopUp customize
		window.open(path+'eng/varis/personalitza.htm' , 'popUpPers' , 'width=550,height=300,scrollbars=NO')
		break;
		
		case 11: // PopUp form instyle anglés
		window.open(path+'eng/instyle/form.htm' , 'popUp' , 'width=500,height=660,scrollbars=NO')
		break;
		
		case 12: // PopUp avis legal anglés
		window.open(path+'eng/varis/avislegal.htm' , 'popUp' , 'width=500,height=550,scrollbars=NO')
		break;
		
		case 13: // PopUp form franquicias anglés
		window.open(path+'eng/uneixte/form_franq.htm' , 'popUp' , 'width=550,height=650,scrollbars=NO')
		break;
		
	}
}

function selec_estil(path){

	momentoActual = new Date() 
	hora = momentoActual.getHours() 
	minuto = momentoActual.getMinutes() 
	segundo = momentoActual.getSeconds()
	
	if ((hora>=8) & (hora<=19)) {opc=1} else {opc=2}  // De 8 a 20h día y de 20h a 8 noche

	var pers = readCookie('qmpStyle'); // Lee cookie
	
	if ((pers == null) | (pers == '')) { // si no existe cookie, carga la plantilla principal (00)
		pers = '00';
		//popUp(1);
	}; 

		
	switch(opc){
	
	case 1:
	var hoja="p" + pers + "_dia.css";
	break;
	
	case 2:
	if (pers==00) {
		var hoja="p" + pers + "_nit.css";
		}
	else {
		var hoja="p" + pers + "_dia.css";
	}
	break;
	
	}
	document.write('<link href="'+path+'_css/'+hoja+'" rel="stylesheet" type="text/css">'); 
}
