First commit 10/07/2002
							
								
								
									
										9
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					#infdj.com_2002 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					*10/07/2002* 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					ToDo: wwtcf? 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
							
								
								
									
										50
									
								
								addons/autenticate.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,50 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					require( "open_db.php" );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					session_name( "INFDJwebsite" );
 | 
				
			||||||
 | 
						$v1="user_id";
 | 
				
			||||||
 | 
						$v2="user_nick";
 | 
				
			||||||
 | 
						$v3="user_auth";
 | 
				
			||||||
 | 
						$v4="user_usaCorreo";
 | 
				
			||||||
 | 
						$v5="user_level";
 | 
				
			||||||
 | 
						session_register($v1,$v2,$v3,$v4,$v5);
 | 
				
			||||||
 | 
					session_start();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$action="";
 | 
				
			||||||
 | 
					if ( isset( $db_login ) && isset( $db_pass ) )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					 checkUser( $db_login, $db_pass, $db_autolog );
 | 
				
			||||||
 | 
					 if ( !$user_auth )
 | 
				
			||||||
 | 
					   $action = "?go=../registro/epassword.htm";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mysql_close($conexion);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					header("Location:../$action\n\n");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function checkUser( $user, $pass, $rem )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  global $conexion, $id, $user_auth, $user_nick, $user_id, $user_usaCorreo, $user_level;
 | 
				
			||||||
 | 
					  $dev = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  $consulta = "SELECT id, level, usaCorreo FROM users WHERE nick = '$user' AND pass='$pass'";
 | 
				
			||||||
 | 
						$res = mysql_query( $consulta, $conexion ) OR die("No puedo realizar la consulta");
 | 
				
			||||||
 | 
						if (  mysql_num_rows($res) > 0 )
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
					 	  $user_id = mysql_result( $res, 0, "id" );
 | 
				
			||||||
 | 
						  $user_nick = $user;
 | 
				
			||||||
 | 
						  $user_auth = true;
 | 
				
			||||||
 | 
						  $user_usaCorreo = mysql_result( $res, 0, "usaCorreo" );
 | 
				
			||||||
 | 
						  $user_level = mysql_result( $res, 0, "level" );
 | 
				
			||||||
 | 
						  mysql_query( "UPDATE users SET ultimaEntrada=NOW() WHERE id=$user_id", $conexion ) OR die("No puedo actualizar tu ficha");
 | 
				
			||||||
 | 
						  if ( $rem )
 | 
				
			||||||
 | 
						  {
 | 
				
			||||||
 | 
						    setcookie( "ulogin", "$user", time()+2592000, "/", ".infdj.com" );
 | 
				
			||||||
 | 
						    setcookie( "upass", "$pass", time()+2592000, "/", ".infdj.com" );
 | 
				
			||||||
 | 
						  }
 | 
				
			||||||
 | 
						  $dev = true;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						mysql_free_result($res);
 | 
				
			||||||
 | 
					 return $dev;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										29
									
								
								addons/box_admin.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,29 @@
 | 
				
			|||||||
 | 
					document.write('<table border=0 cellpadding=0 cellspacing=0 width="167">');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/box_supizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/boxr/box_supmini.gif">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/txt_admin.gif" align="absmiddle">  ');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td width="9"><img src="images/boxr/box_supder.gif" width="9" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5" background="images/boxr/box_medizq.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/box_medizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td bgcolor="#2067BE" class="box">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if ( level <= -1 ) document.write( '<a href="./?dgo=registro/list_user.php" class="box">Control de usuarios</a><br>');
 | 
				
			||||||
 | 
					if ( level <= -2 ) document.write( '<a href="./?dgo=addons/remark.php" class="box">Noticia destacada</a><br>');
 | 
				
			||||||
 | 
					if ( level <= -2 ) document.write( '<a href="./?dgo=pages/sat/links.php" class="box">Enlaces Drivers</a><br>');
 | 
				
			||||||
 | 
					if ( level <= -2 ) document.write( '<a href="" class="box">N/A</a><br>');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/boxr/box_medder.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/box_medder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/box_infizq.gif" width="5" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('<td valign="top" background="images/boxr/box_infmed.gif" class="box">');
 | 
				
			||||||
 | 
					document.write('<img src="images/boxr/box_infmed0.gif" align="top" width="87" height="19">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td><img src="images/boxr/box_infder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr></table>');
 | 
				
			||||||
							
								
								
									
										39
									
								
								addons/box_enlaces.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,39 @@
 | 
				
			|||||||
 | 
					document.write('<table border=0 cellpadding=0 cellspacing=0 width="167">');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_supizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_supmini.gif">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('<img src="images/box/txt_enlaces.gif">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td width="9"><img src="images/box/box_supder.gif" width="9" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5" background="images/box/box_medizq.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td bgcolor="#2067BE" class="box">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('<form method="POST"><p align="center"><br>' );
 | 
				
			||||||
 | 
					document.write('<select name="enlaces" size="1">' );
 | 
				
			||||||
 | 
					document.write('<option>:: enlaces ::</option>' );
 | 
				
			||||||
 | 
					document.write('<option>Productos</option>' );
 | 
				
			||||||
 | 
					document.write('<option>Drivers</option>' );
 | 
				
			||||||
 | 
					document.write('<option>Foro</option>' );
 | 
				
			||||||
 | 
					document.write('<option>Chat</option></select></p></form>' );
 | 
				
			||||||
 | 
					document.write('<p>P<>ginas hospedadas:<br>' );
 | 
				
			||||||
 | 
					document.write(':: <a href="http://bio.infdj.com" target="_blank" class="box">Hormigas!</a><br>' );
 | 
				
			||||||
 | 
					document.write(':: <a href="http://cdj.infdj.com" target="_blank" class="box">C.DJ</a><br>' );
 | 
				
			||||||
 | 
					document.write(':: <a href="http://jd.infdj.com" target="_blank" class="box">JDsoft</a><br>' );
 | 
				
			||||||
 | 
					document.write(':: <a href="http://sscript.infdj.com" target="_blank" class="box">SScript</a></p>' );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_medder.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infizq.gif" width="5" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('<td valign="top" background="images/box/box_infmed.gif" class="box">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infmed0.gif" align="top" width="87" height="19">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( '' );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td><img src="images/box/box_infder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr></table>');
 | 
				
			||||||
							
								
								
									
										25
									
								
								addons/box_ident.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,25 @@
 | 
				
			|||||||
 | 
					document.write('<table border=0 cellpadding=0 cellspacing=0 width="167">');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_supizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_supmini.gif"><img src="images/box/txt_ident.gif"></td>');
 | 
				
			||||||
 | 
					document.write('<td width="9"><img src="images/box/box_supder.gif" width="9" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5" background="images/box/box_medizq.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td bgcolor="#2067BE" class="box">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( '<form method="POST" name="vuser" action="addons/autenticate.php"><div align="center"><center><table border="0"><tr><td>Usuario: <br>Clave: </td><td><input type="text" size="10" name="db_login"><br><input type="password" size="10" name="db_pass"></td></tr><tr><td colspan="2" class="box"><input type="checkbox" name="db_autolog"> Recordarme <input type="image" name src="images/sep.gif" border="0" width="1" height="1"></td></tr></table></center></div></form><p>Para acceder a ciertos sevicios como el correo, debes estar registrado.</p>' );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_medder.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infizq.gif" width="5" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('<td valign="top" background="images/box/box_infmed.gif" class="box">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infmed0.gif" align="top" width="87" height="19">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( ' <a href="./?dgo=registro.php" class="box">Registrate</a>');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td><img src="images/box/box_infder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr></table>');
 | 
				
			||||||
							
								
								
									
										25
									
								
								addons/box_miniChat.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,25 @@
 | 
				
			|||||||
 | 
					document.write('<table border=0 cellpadding=0 cellspacing=0 width="167">');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_supizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_supmini.gif"><img src="images/box/txt_minichat.gif"></td>');
 | 
				
			||||||
 | 
					document.write('<td width="9"><img src="images/box/box_supder.gif" width="9" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5" background="images/box/box_medizq.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td bgcolor="#2067BE" class="box">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( '<iframe SRC="miniChat.php" NAME="miniChat" WIDTH="153" HEIGHT="120" ALIGN="center" frameborder=0 scrolling=no>:: Su navegador no soporta IFrames, si desea visualizar estas p<>ginas correctamente, le recomendamos que actualice su navegador.</iframe>' );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_medder.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infizq.gif" width="5" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('<td valign="top" background="images/box/box_infmed.gif" class="box">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infmed0.gif" align="top" width="87" height="19">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( ' <a href="javascript:refrescaMiniChat();" class="box">Actualizar</a>' );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td><img src="images/box/box_infder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr></table>');
 | 
				
			||||||
							
								
								
									
										32
									
								
								addons/box_noticias.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,32 @@
 | 
				
			|||||||
 | 
					document.write('<table border=0 cellpadding=0 cellspacing=0 width="167">');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_supizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_supmini.gif">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('<img src="images/box/txt_noticias.gif" align="absmiddle">  ');
 | 
				
			||||||
 | 
					if ( level <= -1 ) document.write( '<a href="javascript:noticia(-3);" class="box">+</a> ');
 | 
				
			||||||
 | 
					if ( level <= -2 ) document.write( '<a href="javascript:noticia(-4);" class="box">E</a> ');
 | 
				
			||||||
 | 
					if ( level <= -2 ) document.write( '<a href="javascript:noticia(-5);" class="box">-</a>');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td width="9"><img src="images/box/box_supder.gif" width="9" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5" background="images/box/box_medizq.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medizq.gif" width="5" height="17"></td>');
 | 
				
			||||||
 | 
					document.write('<td bgcolor="#2067BE" class="box">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('<iframe SRC="noticias.php" NAME="noticias" WIDTH="153" HEIGHT="150" ALIGN="center" frameborder=0>Su navegador no soporta iFrames, actualicelo si desea visualizar correctamente estas p<>ginas.   </iframe>');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td>');
 | 
				
			||||||
 | 
					document.write('<td background="images/box/box_medder.gif">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_medder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr>');
 | 
				
			||||||
 | 
					document.write('<tr><td width="5">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infizq.gif" width="5" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('<td valign="top" background="images/box/box_infmed.gif" class="box">');
 | 
				
			||||||
 | 
					document.write('<img src="images/box/box_infmed0.gif" align="top" width="87" height="19">');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write( '<img src="images/sep.gif" align="top" width="3" height="19"><a href="javascript:noticia(%20-2%20);"><img src="images/box/bt_first0.gif" align="top" border="0" width="13" height="17" name="first" onmouseout="cb(\'first\',0);" onmouseover="cb(\'first\',1);"></a><a href="javascript:noticia(-1);"><img src="images/box/bt_prior0.gif" align="top" border="0" width="13" height="17" name="prior" onmouseout="cb(\'prior\',0);" onmouseover="cb(\'prior\',1);"></a>');
 | 
				
			||||||
 | 
					document.write( '<a href="javascript:noticia(1);"><img src="images/box/bt_next0.gif" align="top" border="0" width="13" height="17" name="next" onmouseout="cb(\'next\',0);" onmouseover="cb(\'next\',1);"></a><a href="javascript:noticia(2);"><img src="images/box/bt_last0.gif" align="top" border="0" width="13" height="17" name="last" onmouseout="cb(\'last\',0);" onmouseover="cb(\'last\',1);"></a>');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					document.write('</td><td><img src="images/box/box_infder.gif" width="9" height="19"></td>');
 | 
				
			||||||
 | 
					document.write('</tr></table>');
 | 
				
			||||||
							
								
								
									
										40
									
								
								addons/cb.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,40 @@
 | 
				
			|||||||
 | 
					function cb( name, st )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  document.images[name].src = "images/box/bt_"+name+st+".gif";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var canRefresh=1, numRefresh=1;
 | 
				
			||||||
 | 
					function refrescaMiniChat()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					 if ( canRefresh )
 | 
				
			||||||
 | 
					 {
 | 
				
			||||||
 | 
					  parent.frames['miniChat'].location.href="miniChat.php?refresh=true";
 | 
				
			||||||
 | 
					  canRefresh = 0;
 | 
				
			||||||
 | 
					  setTimeout( "canRefresh=1", 5000*numRefresh );
 | 
				
			||||||
 | 
					  numRefresh=1;
 | 
				
			||||||
 | 
					 } else {
 | 
				
			||||||
 | 
					  numRefresh++;
 | 
				
			||||||
 | 
					 }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// numNews fijada desde PHP contiene el n<>mero de noticias
 | 
				
			||||||
 | 
					var numNew = 3, curNew = 1;
 | 
				
			||||||
 | 
					function noticia( idx )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 if ( idx <= -3 ) 
 | 
				
			||||||
 | 
					 {
 | 
				
			||||||
 | 
						if ( idx == -3 ) parent.frames['noticias'].location.href = "noticias.php?sadd=new";
 | 
				
			||||||
 | 
						if ( idx == -4 ) parent.frames['noticias'].location.href = "noticias.php?smod="+curNew+"&go="+curNew;
 | 
				
			||||||
 | 
						if ( idx == -5 ) parent.frames['noticias'].location.href = "noticias.php?sdel="+curNew;
 | 
				
			||||||
 | 
					 } else {
 | 
				
			||||||
 | 
						 if ( idx == -2 )	curNew=1;
 | 
				
			||||||
 | 
						 if ( idx == -1 ) 	curNew--;
 | 
				
			||||||
 | 
						 if ( idx ==  1 )	curNew++;
 | 
				
			||||||
 | 
						 if ( idx ==  2 )	curNew=numNew;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						 if ( curNew < 1 ) { curNew = 1; return; }
 | 
				
			||||||
 | 
						 if ( curNew > numNew ) { curNew = numNew; return; }
 | 
				
			||||||
 | 
						 parent.frames['noticias'].location.href = "noticias.php?go="+curNew;
 | 
				
			||||||
 | 
					 }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										35
									
								
								addons/cbox.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,35 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					function makeCBox( $_width, $title, $_content, $_more )
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  echo '<table border=0 cellpadding=0 cellspacing=0 width="'.$_width.'">';
 | 
				
			||||||
 | 
					  echo '<tr><td width="5">'
 | 
				
			||||||
 | 
					      .'<img src="images/box/box_supizq.gif" width="5" height="17"></td>'
 | 
				
			||||||
 | 
					      . '<td background="images/box/box_supmini.gif">'
 | 
				
			||||||
 | 
					      .$title.'</td>'
 | 
				
			||||||
 | 
					      .'<td width="9"><img src="images/box/box_supder.gif" width="9" height="17"></td>'
 | 
				
			||||||
 | 
					      .'</tr>'
 | 
				
			||||||
 | 
					      .'<tr><td width="5" background="images/box/box_medizq.gif">'
 | 
				
			||||||
 | 
					      .'<img src="images/box/box_medizq.gif" width="5" height="17"></td>'
 | 
				
			||||||
 | 
					      .'<td bgcolor="#FFFFFF" style="color:#000000;">';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  echo $_content;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  echo '</td>'
 | 
				
			||||||
 | 
					      .'<td background="images/box/box_medder.gif">'
 | 
				
			||||||
 | 
					      .'<img src="images/box/box_medder.gif" width="9" height="19"></td>'
 | 
				
			||||||
 | 
					      .'</tr>'
 | 
				
			||||||
 | 
					      .'<tr><td width="5">'
 | 
				
			||||||
 | 
					      .'<img src="images/box/box_infizq.gif" width="5" height="19"></td>'
 | 
				
			||||||
 | 
					      .'<td valign="top" background="images/box/box_infmed.gif" class="box">'
 | 
				
			||||||
 | 
					      .'<img src="images/box/cbox_infmed0.gif" align="top" width="4" height="19">';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  echo '<img src="images/box/cbox_infmed1.gif" align="top" width="'.($_width-100).'" height="19">';
 | 
				
			||||||
 | 
					  echo '<img src="images/box/cbox_infmed2.gif" align="top" width="9" height="19">';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  echo $_more;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  echo '</td><td><img src="images/box/box_infder.gif" width="9" height="19"></td>'
 | 
				
			||||||
 | 
					      .'</tr></table>';
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										52
									
								
								addons/email.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,52 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 | 
				
			||||||
 | 
					  <title>Informática D.J. programadores :: w w w . i n f d j . c o m ::</title>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <link rel=stylesheet href="infdj.css">
 | 
				
			||||||
 | 
					</head>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<body bgcolor="#000000">
 | 
				
			||||||
 | 
					<div align="center"><table width=500>
 | 
				
			||||||
 | 
					<tr><td>
 | 
				
			||||||
 | 
					<h1>Correo interno</h1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p class=remark> Actualmente las cuentas de correo internas estan bloqueadas.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Dentro de poco actualizaremos nuestros servidores de correo electr<EFBFBD>nico, mejorando el servicio y eliminando completamente la publicidad ajena.
 | 
				
			||||||
 | 
					<br><br>
 | 
				
			||||||
 | 
					Trataremos de hacer este cambio lo mas transparente para ti, como nos sea posible.
 | 
				
			||||||
 | 
					<br><br>
 | 
				
			||||||
 | 
					No obstante las cuentas de correo <b>antiguas</b>, siguen en perfecto funcionamiento.
 | 
				
			||||||
 | 
					<br><p class=remark>
 | 
				
			||||||
 | 
					Para acceder a ellas, utiliza el siguiente formulario:</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<div align="center"><center><table border="1"
 | 
				
			||||||
 | 
					            cellpadding="3" cellspacing="0" bordercolor="#000000"
 | 
				
			||||||
 | 
					            bordercolorlight="#000000">
 | 
				
			||||||
 | 
					                <tr>
 | 
				
			||||||
 | 
					                    <td bgcolor="#800000"><font color="#FFFFFF"
 | 
				
			||||||
 | 
					                    size="2" face="Arial,Helvetica,sans-serif">Email
 | 
				
			||||||
 | 
					                    Login</font><br>
 | 
				
			||||||
 | 
					                    <input type="text" size="15" maxlength="32"
 | 
				
			||||||
 | 
					                    name="loginName"> </td>
 | 
				
			||||||
 | 
					                    <td bgcolor="#800000"><font color="#FFFFFF"
 | 
				
			||||||
 | 
					                    size="2" face="Arial,Helvetica,sans-serif">Password</font><br>
 | 
				
			||||||
 | 
					                    <input type="password" size="15"
 | 
				
			||||||
 | 
					                    maxlength="32" name="user_pwd"> </td>
 | 
				
			||||||
 | 
					                </tr>
 | 
				
			||||||
 | 
					                <tr>
 | 
				
			||||||
 | 
					                    <td align="center" bgcolor="#C0C0C0"
 | 
				
			||||||
 | 
					                    style="text-align:center;"><input
 | 
				
			||||||
 | 
					                    type="submit" name="login" value="Login"></td>
 | 
				
			||||||
 | 
					                    <td align="center" bgcolor="#C0C0C0"
 | 
				
			||||||
 | 
					                    style="text-align:center;"><font
 | 
				
			||||||
 | 
					                    color="#000000">Nuevos usuarios</font><br>                    <a href="http://infdj.mail.everyone.net/email/scripts/useragreement.pl"
 | 
				
			||||||
 | 
					                    class="wcMenu">alta GRATIS</a>!</td>
 | 
				
			||||||
 | 
					                </tr>
 | 
				
			||||||
 | 
					            </table>
 | 
				
			||||||
 | 
					            </center></div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<br><br><p class=remark align="center">Muy pronto estaremos operativos al 101%</p>
 | 
				
			||||||
 | 
					</td></tr></table></div>
 | 
				
			||||||
 | 
					</body>
 | 
				
			||||||
							
								
								
									
										8
									
								
								addons/index.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <title>:: No dispone de permisos para acceder a esta carpeta ::</title>
 | 
				
			||||||
 | 
					  <META CONTENT="0; URL=/" HTTP-EQUIV="REFRESH">
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					 <body>
 | 
				
			||||||
 | 
					 </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										169
									
								
								addons/infdj.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,169 @@
 | 
				
			|||||||
 | 
					@media screen {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* Enlaces */
 | 
				
			||||||
 | 
					  a {
 | 
				
			||||||
 | 
					    color: #FFFF00;
 | 
				
			||||||
 | 
					    font: 10pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
					    font-weight: bold;
 | 
				
			||||||
 | 
					    text-decoration: none;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  a:hover       {color: #FF0000;}	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .ab {
 | 
				
			||||||
 | 
					    color: #0D5AB9;
 | 
				
			||||||
 | 
					    font: 10pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
					    font-weight: bold;
 | 
				
			||||||
 | 
					    text-decoration: none;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .ab:hover       {color: #B4CCE9;}	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* Cuerpo */
 | 
				
			||||||
 | 
					  body  {
 | 
				
			||||||
 | 
						 scrollbar-face-color: #0066CC;
 | 
				
			||||||
 | 
						 scrollbar-shadow-color: #0099CC;
 | 
				
			||||||
 | 
						 scrollbar-highlight-color: #0099CC;
 | 
				
			||||||
 | 
						 scrollbar-3dlight-color: #0066CC;
 | 
				
			||||||
 | 
						 scrollbar-darkshadow-color: black;
 | 
				
			||||||
 | 
						 scrollbar-track-color: #000000;
 | 
				
			||||||
 | 
						 scrollbar-arrow-color: #FFFFCE ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					         font-family: verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
					         font-size: 10pt;
 | 
				
			||||||
 | 
						 text-align: justify;margin-right:5.0pt; 
 | 
				
			||||||
 | 
						 color: #00FFFF;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* Tablas */
 | 
				
			||||||
 | 
					  td, th {
 | 
				
			||||||
 | 
					   font-size: 10pt;
 | 
				
			||||||
 | 
					   color: #FFFFFF;
 | 
				
			||||||
 | 
					   text-align: justify;margin-right:5.0pt;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  td2 {
 | 
				
			||||||
 | 
					   color: #00FFFF;
 | 
				
			||||||
 | 
					   text-align: justify;margin-right:5.0pt;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .td3 {
 | 
				
			||||||
 | 
					   font-size: 12pt;
 | 
				
			||||||
 | 
					  } 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  th {
 | 
				
			||||||
 | 
					   font-weight: bold;
 | 
				
			||||||
 | 
					   text-align: left;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* Estilo SubTexto */
 | 
				
			||||||
 | 
					  .b2   {
 | 
				
			||||||
 | 
						 font-size: 8pt;
 | 
				
			||||||
 | 
						 color: #00FFFF;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* OTROS POR REVISAR */
 | 
				
			||||||
 | 
					  .box{
 | 
				
			||||||
 | 
					          color: #B4CCE9;
 | 
				
			||||||
 | 
					          font: 8pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
						  font-size: 8pt;
 | 
				
			||||||
 | 
					          text-decoration: none;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  input {
 | 
				
			||||||
 | 
						 background-color: #5088CC;
 | 
				
			||||||
 | 
						 border-width: 1;
 | 
				
			||||||
 | 
						 border-color: #97B8E1;
 | 
				
			||||||
 | 
						 border-style: solid;
 | 
				
			||||||
 | 
						 color: #000000;
 | 
				
			||||||
 | 
						 font-size: 8pt;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					  select {
 | 
				
			||||||
 | 
						 background-color: #5088CC;
 | 
				
			||||||
 | 
						 border-width: 1;
 | 
				
			||||||
 | 
						 border-color: #97B8E1;
 | 
				
			||||||
 | 
						 border-style: solid;
 | 
				
			||||||
 | 
						 color: #FFFFFF;
 | 
				
			||||||
 | 
						 font-size: 8pt;
 | 
				
			||||||
 | 
						 zIndex: -1000;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					  .cristal{	
 | 
				
			||||||
 | 
					          color: #FF0000;
 | 
				
			||||||
 | 
					          font: 8pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
						  font-size: 8pt;
 | 
				
			||||||
 | 
					          text-decoration: none;
 | 
				
			||||||
 | 
					        }	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .remark {
 | 
				
			||||||
 | 
					          color: #FFFF00;
 | 
				
			||||||
 | 
					          font: 10pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
						  font-size: 10pt;
 | 
				
			||||||
 | 
					          text-decoration: none;
 | 
				
			||||||
 | 
						  font-weight: bold;
 | 
				
			||||||
 | 
					  	}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .litt{	
 | 
				
			||||||
 | 
					          color: #B4CCE9;
 | 
				
			||||||
 | 
					          font: 7pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
						  font-size: 7pt;
 | 
				
			||||||
 | 
					          text-decoration: none;
 | 
				
			||||||
 | 
					        }	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   .tdSuave{
 | 
				
			||||||
 | 
						  background-color: #B4CCE9;
 | 
				
			||||||
 | 
						  color: #800000;
 | 
				
			||||||
 | 
					   }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   h1{
 | 
				
			||||||
 | 
					 	font:18pt verdana, arial, helvetica, sans-serif;
 | 
				
			||||||
 | 
						font-size: 18pt;
 | 
				
			||||||
 | 
						font-weight: bold;
 | 
				
			||||||
 | 
						text-decoration: none;
 | 
				
			||||||
 | 
					   }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   A:hover.litt { color: #FF0000; }
 | 
				
			||||||
 | 
					   A:hover.box  { color: #FF0000; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/******************************************************************************
 | 
				
			||||||
 | 
					* Printing styles.                                                            *
 | 
				
			||||||
 | 
					******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@media print {
 | 
				
			||||||
 | 
					  a, a.menuItem {
 | 
				
			||||||
 | 
					    color: #808080 !important;
 | 
				
			||||||
 | 
					    font-weight: normal !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  body {
 | 
				
			||||||
 | 
					    font-family: verdana, Arial, Helvetica, sans-serif !important;
 | 
				
			||||||
 | 
					    font-size: 10pt !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  body, #content {
 | 
				
			||||||
 | 
					    background-image: none !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  body, input, textarea, #titleBar, #copyright, #content, #menuBar {
 | 
				
			||||||
 | 
					    background-color: #ffffff !important;
 | 
				
			||||||
 | 
					    color: #000000 !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  input, input.button, textarea, #titleBar, #copyright, #content, #menuBar {
 | 
				
			||||||
 | 
					    border: 1px solid #000000 !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  input.button {
 | 
				
			||||||
 | 
					    background-color: #e0e0e0 !important;
 | 
				
			||||||
 | 
					    color: #000000;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  textarea {
 | 
				
			||||||
 | 
					    scrollbar-base-color: #e0e0e0 !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  a.menuButton, a.menuButtonActive {
 | 
				
			||||||
 | 
					    background-color: #e0e0e0 !important;
 | 
				
			||||||
 | 
					    border-width: 0px !important;
 | 
				
			||||||
 | 
					    color: #000000 !important;
 | 
				
			||||||
 | 
					    font-family: "MS Sans Serif", Arial, Tahoma, sans-serif !important;
 | 
				
			||||||
 | 
					    font-style: normal !important;
 | 
				
			||||||
 | 
					    font-weight: bold !important;
 | 
				
			||||||
 | 
					    left: 0px !important;
 | 
				
			||||||
 | 
					    top: 0px !important;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										18
									
								
								addons/logout.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,18 @@
 | 
				
			|||||||
 | 
					<?
 | 
				
			||||||
 | 
					session_name( "INFDJwebsite" );
 | 
				
			||||||
 | 
						$v1="user_id";
 | 
				
			||||||
 | 
						$v2="user_nick";
 | 
				
			||||||
 | 
						$v3="user_auth";
 | 
				
			||||||
 | 
						$v4="user_usaCorreo";
 | 
				
			||||||
 | 
						$v5="user_level";
 | 
				
			||||||
 | 
						session_register($v1,$v2,$v3,$v4,$v5);
 | 
				
			||||||
 | 
					session_start();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$user_auth=false;
 | 
				
			||||||
 | 
					setcookie( "ulogin", "", 0, "/", ".infdj.com" );
 | 
				
			||||||
 | 
					setcookie( "upass", "", 0, "/", ".infdj.com" );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					session_destroy( session_name() );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					header("Location:../\n\n");
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										135
									
								
								addons/menu_bar/custom.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,135 @@
 | 
				
			|||||||
 | 
					//UDMv3.6
 | 
				
			||||||
 | 
					//**DO NOT EDIT THIS *****
 | 
				
			||||||
 | 
					if (!exclude) { //********
 | 
				
			||||||
 | 
					//************************
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// *** POSITIONING AND STYLES *********************************************
 | 
				
			||||||
 | 
					var menuALIGN = "left";		// alignment
 | 
				
			||||||
 | 
					var absLEFT = 	0;		// absolute left or right position (if menu is left or right aligned)
 | 
				
			||||||
 | 
					var absTOP = 	10; 		// absolute top position
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var staticMENU = false;		// static positioning mode (ie5,ie6 and ns4 only)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var stretchMENU = false;		// show empty cells
 | 
				
			||||||
 | 
					var showBORDERS = false;	// show empty cell borders
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var baseHREF = "addons/menu_bar/";	// base path
 | 
				
			||||||
 | 
					var zORDER = 	1000;		// base z-order of nav structure
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var mCOLOR = 	"";	// main nav cell color
 | 
				
			||||||
 | 
					var rCOLOR = 	"";	// main nav cell rollover color
 | 
				
			||||||
 | 
					var bSIZE = 	0;		// main nav border size
 | 
				
			||||||
 | 
					var bCOLOR = 	""		// main nav border color
 | 
				
			||||||
 | 
					var aLINK = 	"#B4CCE9";	// main nav link color
 | 
				
			||||||
 | 
					var aHOVER = 	"#FFFFFF";		// main nav link hover-color (dual purpose)
 | 
				
			||||||
 | 
					var aDEC = 	"none";		// main nav link decoration
 | 
				
			||||||
 | 
					var fFONT = 	"verdana,arial";	// main nav font face
 | 
				
			||||||
 | 
					var fSIZE = 	13;		// main nav font size (pixels)
 | 
				
			||||||
 | 
					var fWEIGHT = 	""		// main nav font weight
 | 
				
			||||||
 | 
					var tINDENT = 	7;		// main nav text indent (if text is left or right aligned)
 | 
				
			||||||
 | 
					var vPADDING = 	0;		// main nav vertical cell padding
 | 
				
			||||||
 | 
					var vtOFFSET = 	0;		// main nav vertical text offset (+/- pixels from middle)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var keepLIT =	true;		// keep rollover color when browsing menu
 | 
				
			||||||
 | 
					var vOFFSET = 	10;		// shift the submenus vertically
 | 
				
			||||||
 | 
					var hOFFSET = 	0;		// shift the submenus horizontally
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var smCOLOR = 	"#000000";	// submenu cell color
 | 
				
			||||||
 | 
					var srCOLOR = 	"#ececec";	// submenu cell rollover color
 | 
				
			||||||
 | 
					var sbSIZE = 	1;		// submenu border size
 | 
				
			||||||
 | 
					var sbCOLOR = 	"#B4CCE9"	// submenu border color
 | 
				
			||||||
 | 
					var saLINK = 	"#B4CCE9";	// submenu link color
 | 
				
			||||||
 | 
					var saHOVER = 	"#990000";	// submenu link hover-color (dual purpose)
 | 
				
			||||||
 | 
					var saDEC = 	"none";		// submenu link decoration
 | 
				
			||||||
 | 
					var sfFONT = 	"verdana,arial";		// submenu font face
 | 
				
			||||||
 | 
					var sfSIZE = 	12;		// submenu font size (pixels)
 | 
				
			||||||
 | 
					var sfWEIGHT = 	"normal"	// submenu font weight
 | 
				
			||||||
 | 
					var stINDENT = 	5;		// submenu text indent (if text is left or right aligned)
 | 
				
			||||||
 | 
					var svPADDING = 2;		// submenu vertical cell padding
 | 
				
			||||||
 | 
					var svtOFFSET = 0;		// submenu vertical text offset (+/- pixels from middle)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var shSIZE =	0;		// submenu drop shadow size
 | 
				
			||||||
 | 
					var shCOLOR =	"#bcbcbc";	// submenu drop shadow color
 | 
				
			||||||
 | 
					var shOPACITY = 75;		// submenu drop shadow opacity (not ie4,ns4 or opera)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var keepSubLIT = true;		// keep submenu rollover color when browsing child menu
 | 
				
			||||||
 | 
					var chvOFFSET = 0;		// shift the child menus vertically
 | 
				
			||||||
 | 
					var chhOFFSET = 0;		// shift the child menus horizontally
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var closeTIMER = 330;		// menu closing delay time
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var cellCLICK = true;		// links activate on TD click
 | 
				
			||||||
 | 
					var aCURSOR = "hand";		// cursor for active links (not ns4 or opera)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var altDISPLAY = "status";	// where to display alt text
 | 
				
			||||||
 | 
					var allowRESIZE = true;		// allow resize/reload
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var redGRID = false;		// show a red grid
 | 
				
			||||||
 | 
					var gridWIDTH = 0;		// override grid width
 | 
				
			||||||
 | 
					var gridHEIGHT = 0;		// override grid height
 | 
				
			||||||
 | 
					var documentWIDTH = 0;		// override document width
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var hideSELECT = false;		// auto-hide select boxes when menus open (ie only)
 | 
				
			||||||
 | 
					var allowForSCALING = false;	// allow for text scaling in mozilla 5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//** LINKS ***********************************************************
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// add main link item ("url","Link name",width,"text-alignment","_target","alt text",top position,left position,"key trigger","mCOLOR","rCOLOR","aLINK","aHOVER")
 | 
				
			||||||
 | 
					addMainItem("","Empresa",70,"center","","Conocenos mas a fondo",0,0,"","","","","");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// define submenu properties (width,"align to edge","text-alignment",v offset,h offset,"filter","smCOLOR","srCOLOR","sbCOLOR","shCOLOR","saLINK","saHOVER")
 | 
				
			||||||
 | 
						defineSubmenuProperties(200,"left","left",0,0,"","","","","","","");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// add submenu link items ("url","Link name","_target","alt text")
 | 
				
			||||||
 | 
						addSubmenuItem("?go=memoria.htm","Memoria de empresa","","Exposici<63>n de nuestra trayectoria empresarial");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=recursos.htm","Recursos T<>cnicos y humanos","","Medios con los que contamos");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=certificados.htm","Certificados de calidad","","Un equipo de profesionales, a su servicio");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					addMainItem("?dgo=listado_productos","Productos",80,"center","","Listados de productos",0,0,"","","","","");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						defineSubmenuProperties(150,"left","left",0,0,"","","","","","","");
 | 
				
			||||||
 | 
						addSubmenuItem("?dgo=prod/resumen_productos.php","Tarifas Light","","Resumen de los productos mas comunes");
 | 
				
			||||||
 | 
						addSubmenuItem("?dgo=prod/listado_productos.php","Listado Completo","","Listado completo de productos");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=prod/makeord.htm","Maketa tu Ordenador","","Equipos a la Medida de sus necesidades");
 | 
				
			||||||
 | 
						addSubmenuItem("?dgo=prod/cesta.php","Cesta de la compra","","Muestra los productos dentro de su cesta");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					addMainItem("","Servicios",75,"center","","Servicios adicionales que ofrecemos",0,0,"","","","","");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						defineSubmenuProperties(150,"left","left",0,0,"","","","","","","");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=cursos/cursos.htm","Cursos...","","Cursos de Inform<72>tica");
 | 
				
			||||||
 | 
							// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter","smCOLOR","srCOLOR","sbCOLOR","shCOLOR","saLINK","saHOVER")
 | 
				
			||||||
 | 
							defineChildmenuProperties(150,"left","center",0,4,"","","","","","","");
 | 
				
			||||||
 | 
							// add child menu link items ("url","Link name","_target","alt text")
 | 
				
			||||||
 | 
							addChildmenuItem("?go=cursos/cursos.htm","Introducción","","Resumen de los principales cursos que impartimos");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=cursos/cguiones.htm","Materias","","Contenido de los principales cursos");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=cursos/carchiv.htm","Documentos","","Material de apoyo a las clases");
 | 
				
			||||||
 | 
							addChildmenuItem("","","","");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=cursos/cprofes.htm","Profesores","","Resuelve tus dudas on-line con los profesores");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=cursos/chorarios.htm","Horarios","","Tabla de horarios y clases");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=dweb/diseno.htm","Diseño de...","","Dise<73>o de aplicaciones y sitos WEB");
 | 
				
			||||||
 | 
							defineChildmenuProperties(180,"left","center",0,4,"","","","","","","");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=dweb/web.htm","Páginas Web","","Dise<73>amos y hospedamos su p<>gina web");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=dapp/app.htm","Aplicaciones","","Aplicaciones Software & control de Hardware a medida");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=dweb/ddemos.htm","Ejemplos y Demostraciones","","Vea algunos de nuestros trabajos como ejemplo");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=sat/stecnico.htm","Servicio Técnico...","","Nuestro Servicio T<>cnico, responde...");
 | 
				
			||||||
 | 
							defineChildmenuProperties(150,"left","center",0,4,"","","","","","","");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=sat/stecnico.htm","General","","");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=sat/local.htm","En nuestros locales","","Ayudas para el correcto uso en los CyberCentros");
 | 
				
			||||||
 | 
							addChildmenuItem("?dgo=pages/sat/drivers.php","Drivers","","Enlaces de fabricantes y drivers (controladores)");
 | 
				
			||||||
 | 
							addChildmenuItem("?go=sat/faqs.htm","FAQ's","","(en Espa<70>ol PUF's) Preguntas de Uso Frecuente");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					addMainItem("?go=donde/donde.htm","<22>Donde...?",80,"center","","<22>Donde encontrarnos? Pica aqui",0,0,"","","","","");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						defineSubmenuProperties(150,"left","left",0,0,"","","","","","","");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=donde/donde.htm","Direcciones","","Vea donde encontrar nuestros Locales y CyberCentros");
 | 
				
			||||||
 | 
						addSubmenuItem("?go=donde/camaras.htm","Video Camaras","","Vea nuestos locales <20>EN DIRECTO!");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//**DO NOT EDIT THIS *****
 | 
				
			||||||
 | 
					}//***********************
 | 
				
			||||||
 | 
					//************************
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										8
									
								
								addons/menu_bar/index.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <title>:: No dispone de permisos para acceder a esta carpeta ::</title>
 | 
				
			||||||
 | 
					  <META CONTENT="0; URL=/" HTTP-EQUIV="REFRESH">
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					 <body>
 | 
				
			||||||
 | 
					 </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										70
									
								
								addons/menu_bar/listado_productos.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,70 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					<!-- main.htm -->
 | 
				
			||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 | 
				
			||||||
 | 
					  <title>Informática D.J. programadores :: w w w . i n f d j . c o m ::</title>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <link rel=stylesheet href="addons/infdj.css">
 | 
				
			||||||
 | 
					  <SCRIPT src="addons/cb.js"></SCRIPT>
 | 
				
			||||||
 | 
					  <SCRIPT>baseA = "";</SCRIPT>
 | 
				
			||||||
 | 
					  <SCRIPT src="addons/menu_bar/sniffer.js"></SCRIPT>
 | 
				
			||||||
 | 
					  <SCRIPT src="addons/menu_bar/custom.js"></SCRIPT>
 | 
				
			||||||
 | 
					  <SCRIPT src="addons/menu_bar/style.js"></SCRIPT>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <SCRIPT>
 | 
				
			||||||
 | 
					numNew=4;var level=0;  </SCRIPT>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<body bgcolor="#FFFFFF" text="#FFFFFF" topmargin="0" leftmargin="0" ondragstart="return false" onselectstart="return false" oncontextmenu="return false">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<div align="center"><center>
 | 
				
			||||||
 | 
					<table border="0" cellpadding="0" cellspacing="0" width="769" background="images/bg.jpg">
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td background="images/ln.gif" valign="top"><img src="images/lb.gif" width="1" height="77"><br><img src="images/ln.gif" width="1" height="500"></td>
 | 
				
			||||||
 | 
						<td valign="top" width="777">
 | 
				
			||||||
 | 
					<!-- begin header.htm -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						<table border="0" cellpadding="0" cellspacing="0" width="100%">
 | 
				
			||||||
 | 
					            <tr bgcolor="#FFFFFF">
 | 
				
			||||||
 | 
					                <td width="10"> </td>
 | 
				
			||||||
 | 
					                <td width="76"><img src="images/bm_logo_sup.gif" width="76" height="77"></td>
 | 
				
			||||||
 | 
					                <td width="186"  valign="top" width="186"><a href="/index.php?INFDJwebsite=e41288ad3d5d25d856ffa7136ea6453e"><img src="images/txt_infdj.gif" width="186" height="37" border="0"></a></td>
 | 
				
			||||||
 | 
					                <td align="center" style="text-align='center'">[ESPACIO RESERVADO]</td>
 | 
				
			||||||
 | 
					            </tr>
 | 
				
			||||||
 | 
						</table>
 | 
				
			||||||
 | 
						<table border="0" cellpadding="0" cellspacing="0" width="100%">
 | 
				
			||||||
 | 
						    <tr bgcolor="#FFFFFF">
 | 
				
			||||||
 | 
					                <td width="10"><img src="images/bm_med.gif" width="10" height="29"></td>
 | 
				
			||||||
 | 
					                <td width="76"><img src="images/bm_logo_med.gif" width="76" height="29"></td>
 | 
				
			||||||
 | 
					                <td width="130" background="images/bm_crist_med.gif" class="cristal"><img src="images/bm_med.gif" align="absmiddle" width="10" height="29"><img  src="images/bm_crist_izq.gif" align="absmiddle" width="10" height="29">15-Aug-2002</td>
 | 
				
			||||||
 | 
					       	        <td background="images/bm_med.gif"><img src="images/bm_crist_der.gif" width="10" height="29" align="absmiddle"><img src="sep.gif" name="anchor" alt="" border=0 width=5 height=20 align="absmiddle"></td>
 | 
				
			||||||
 | 
						    </tr>
 | 
				
			||||||
 | 
					            <tr>
 | 
				
			||||||
 | 
					       	        <td width="10"><img src="images/bm_minf.gif" width="10" height="30"></td>
 | 
				
			||||||
 | 
					                <td width="76"><img src="images/bm_logo_inf.gif" width="76" height="30"></td>
 | 
				
			||||||
 | 
					                <td width="130"><img src="images/bm_minf.gif" align="absmiddle" width="10" height="30"><img src="images/bm_crist_izqinf.gif" align="absmiddle" width="10" height="30"></td>
 | 
				
			||||||
 | 
					                <td background="images/bm_minf.gif"><img src="images/bm_crist_derinf.gif" align="absmiddle" width="10" height="30">Mas pruebas</td>
 | 
				
			||||||
 | 
					            </tr>
 | 
				
			||||||
 | 
					       	</table>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<!-- end header.htm -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						<table border="0" cellpadding="5" cellspacing="0" width="100%">
 | 
				
			||||||
 | 
							    <tr>
 | 
				
			||||||
 | 
						                <td width="167" valign="top">
 | 
				
			||||||
 | 
					<!-- begin leftnav.htm -->
 | 
				
			||||||
 | 
					<p><br><br></p>				<img src="images/sep.gif" width="5" height="5">
 | 
				
			||||||
 | 
									<script language="javascript" src="addons/box_noticias.js"></script>
 | 
				
			||||||
 | 
									<img src="images/sep.gif" width="5" height="5">
 | 
				
			||||||
 | 
					<script language="javascript" src="addons/box_ident.js"></script>				<img src="images/sep.gif" width="5" height="5">
 | 
				
			||||||
 | 
									<script language="javascript" src="addons/box_enlaces.js"></script>
 | 
				
			||||||
 | 
									<img src="images/sep.gif" width="5" height="5">
 | 
				
			||||||
 | 
									<script language="javascript" src="addons/box_miniChat.js"></script>
 | 
				
			||||||
 | 
					<!-- end leftnav.htm -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								</td>
 | 
				
			||||||
 | 
						                <td valign="top">
 | 
				
			||||||
 | 
					<br />
 | 
				
			||||||
 | 
					<b>Fatal error</b>:  Failed opening required 'prod/listado_productos.php' (include_path='.:/usr/local/lib/php') in <b>/var/www/html/newLook/index.php</b> on line <b>153</b><br />
 | 
				
			||||||
							
								
								
									
										14
									
								
								addons/menu_bar/menu.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
				
			|||||||
 | 
					//UDMv3.6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//******************************************************************************************
 | 
				
			||||||
 | 
					//*** if you're NOT using relative positiong then it's safe to delete this chunk of code ***
 | 
				
			||||||
 | 
					var tempEl;function docjslib_getRealLeft(imgElem){xPos = eval(imgElem).offsetLeft;tempEl = eval(imgElem).offsetParent;while(tempEl!=null){xPos += tempEl.offsetLeft;tempEl = tempEl.offsetParent;}return xPos;};function docjslib_getRealTop(imgElem) {yPos=eval(imgElem).offsetTop;tempEl=eval(imgElem).offsetParent;while(tempEl!=null) {yPos+=tempEl.offsetTop;tempEl=tempEl.offsetParent;}return yPos;};var xPos,yPos,rImg;var rPosition=new Array;if(typeof document.images['anchor']!="undefined"&&typeof document.images['anchor']!=null){rImg=document.images['anchor'];};var fAry=new Array;var fj=0;var fImgs=document.images;for(var i=0;i<fImgs.length;i++){if(fImgs[i].name=="freeanchor"){fAry[fj]=fImgs[i]; fj++;}};/*get offset position function from http://www.webreference.com/js/column33/image.html*/if(rImg){if((mac&&ie4)||konqi){ie4=false;ie=false;konqi=false;exclude=true;}else if(ns4){xPos=rImg.x;yPos=rImg.y;if(menuALIGN!="free"){menuALIGN="left";}absLEFT=xPos;absTOP=yPos;}else{xPos=docjslib_getRealLeft(rImg);yPos=docjslib_getRealTop(rImg);if(mac&&ie5){xPos+=parseInt(document.body.leftMargin);yPos+=parseInt(document.body.topMargin);}if(menuALIGN!="free"){menuALIGN="left";}absLEFT=xPos;absTOP=yPos;}}if(fAry.length>0&&menuALIGN=="free"){if((mac&&ie4)||konqi){ie4=false;ie=false;konqi=false;exclude=true;}else if(ns4){for(i=0;i<fAry.length;i++){xPos=fAry[i].x;yPos=fAry[i].y;if(typeof mI[i]!="undefined") {mI[i][7]=xPos;mI[i][6]=yPos;}absLEFT=0;absTOP=0;}}else{for(i=0;i<fAry.length;i++){xPos=docjslib_getRealLeft(fAry[i]);yPos=docjslib_getRealTop(fAry[i]);if(mac&&ie5){xPos+=parseInt(document.body.leftMargin);yPos+=parseInt(document.body.topMargin);}if(typeof mI[i]!="undefined"){mI[i][7]=xPos;mI[i][6]=yPos;}absLEFT=0;absTOP=0;}}};
 | 
				
			||||||
 | 
					//******************************************************************************************
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//*** DO NOT EDIT **************************************************************************
 | 
				
			||||||
 | 
					var siSTR='';if(ie4||(mac&&ie5)){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_ie4.js"></script>';}else if(ie5){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_ie5.js"></script>';}if(ns4){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_ns4.js"></script>';}if(ns6||mz7){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_moz.js"></script>';}if(op6){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_op6.js"></script>';}if(op5){siSTR+='<script language="javascript1.2" type="text/javascript" src="' + baseHREF + 'menu_op5.js"></script>';}if(!exclude){document.write(siSTR);}
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								addons/menu_bar/menu_bar.rar
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										2
									
								
								addons/menu_bar/menu_ie4.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										2
									
								
								addons/menu_bar/menu_ie5.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										842
									
								
								addons/menu_bar/menu_moz.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,842 @@
 | 
				
			|||||||
 | 
					//UDMv3.6
 | 
				
			||||||
 | 
					for (var f=0;f<mI.length;f++){
 | 
				
			||||||
 | 
					if(typeof sP[f]=="undefined"){sP[f]=[mI[f][2],mI[f][3],mI[f][3],0,0,"","","","","","",""];}
 | 
				
			||||||
 | 
					if(typeof cP[f]=="undefined"){cP[f]=new Array;}
 | 
				
			||||||
 | 
					if(typeof sI[f]=="undefined"){sI[f]=new Array;}
 | 
				
			||||||
 | 
					if(typeof cI[f]=="undefined"){cI[f]=new Array;}
 | 
				
			||||||
 | 
					for (var sf=0;sf<sI[f].length;sf++){
 | 
				
			||||||
 | 
					if(typeof cP[f][sf]=="undefined"){cP[f][sf]=new Array;}
 | 
				
			||||||
 | 
					if(typeof cI[f][sf]=="undefined"){cI[f][sf]=new Array;}
 | 
				
			||||||
 | 
					}}
 | 
				
			||||||
 | 
					if(absTOP<0){absTOP=0;}
 | 
				
			||||||
 | 
					if(absLEFT<0){absLEFT=0;}
 | 
				
			||||||
 | 
					if(vPADDING<0){vPADDING=0;}
 | 
				
			||||||
 | 
					if(svPADDING<0){svPADDING=0;}
 | 
				
			||||||
 | 
					if(aHOVER==""){aHOVER=aLINK;}
 | 
				
			||||||
 | 
					if(saHOVER==""){saHOVER=saLINK;}
 | 
				
			||||||
 | 
					if(aCURSOR=="hand"){aCURSOR="pointer";}
 | 
				
			||||||
 | 
					if(konqi){allowForSCALING=false;}
 | 
				
			||||||
 | 
					if(remoteTRIGGERING){
 | 
				
			||||||
 | 
					staticMENU=false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var tempImg;
 | 
				
			||||||
 | 
					var bnk=".gif";
 | 
				
			||||||
 | 
					var bk=[mCOLOR,bCOLOR,rCOLOR,smCOLOR,sbCOLOR,srCOLOR,shCOLOR];
 | 
				
			||||||
 | 
					var bks=new Array;
 | 
				
			||||||
 | 
					var ui=[false,false,false,false,false,false];
 | 
				
			||||||
 | 
					if(bk[2]==""){bk[2]=mCOLOR;}
 | 
				
			||||||
 | 
					if(bk[5]==""){bk[5]=bk[3];}
 | 
				
			||||||
 | 
					for (var b=0;b<bk.length;b++){
 | 
				
			||||||
 | 
					if(bk[b]==""){bk[b]="";}
 | 
				
			||||||
 | 
					if((bk[b].indexOf('.gif') != -1)||(bk[b].indexOf('.jpg') != -1)){
 | 
				
			||||||
 | 
					ui[b]=true;
 | 
				
			||||||
 | 
					tempImg=bk[b];
 | 
				
			||||||
 | 
					bk[b]=new Image;
 | 
				
			||||||
 | 
					bk[b].src=baseHREF+tempImg;
 | 
				
			||||||
 | 
					bks[b]='background-image:url('+bk[b].src+')\;';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(bk[b]==""){bks[b]='background-color:transparent\;'; }
 | 
				
			||||||
 | 
					else{bks[b]='background-color:'+bk[b]+'\;'; }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(ui[2]&&!ui[0]){bks[0]+='background-image:url('+bnk+')\;';}
 | 
				
			||||||
 | 
					if(ui[0]&&!ui[2]){bks[2]+='background-image:url('+bnk+')\;';}
 | 
				
			||||||
 | 
					if(ui[5]&&!ui[3]){bks[3]+='background-image:url('+bnk+')\;';}
 | 
				
			||||||
 | 
					if(ui[3]&&!ui[5]){bks[5]+='background-image:url('+bnk+')\;';}
 | 
				
			||||||
 | 
					var ok=new Array;
 | 
				
			||||||
 | 
					var oks=new Array;
 | 
				
			||||||
 | 
					var ock=new Array;
 | 
				
			||||||
 | 
					var ocks=new Array;
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					ok[i]=[bk[0],bk[1],bk[2],bk[3],bk[4],bk[5],bk[6]];
 | 
				
			||||||
 | 
					oks[i]=[bks[0],bks[1],bks[2],bks[3],bks[4],bks[5],bks[6]];
 | 
				
			||||||
 | 
					if(mI[i][9]!=""){
 | 
				
			||||||
 | 
					ok[i][0]=mI[i][9];
 | 
				
			||||||
 | 
					oks[i][0]='background-color:'+mI[i][9]+'\;';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(mI[i][10]!=""){
 | 
				
			||||||
 | 
					ok[i][2]=mI[i][10];
 | 
				
			||||||
 | 
					oks[i][2]='background-color:'+mI[i][10]+'\;';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ok[i][9]=aLINK;
 | 
				
			||||||
 | 
					ok[i][10]=aHOVER;
 | 
				
			||||||
 | 
					if(mI[i][11]!=""){ok[i][9]=mI[i][11];}
 | 
				
			||||||
 | 
					if(mI[i][12]!=""){ok[i][10]=mI[i][12];}
 | 
				
			||||||
 | 
					if(sP[i][6]!=""){
 | 
				
			||||||
 | 
					ok[i][3]=sP[i][6]; 
 | 
				
			||||||
 | 
					oks[i][3]='background-color:'+sP[i][6]+'\;'; 
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(sP[i][7]!=""){ok[i][5]=sP[i][7];}
 | 
				
			||||||
 | 
					if(sP[i][8]!=""){oks[i][4]='background-color:'+sP[i][8]+'\;';}
 | 
				
			||||||
 | 
					if(sP[i][9]!=""){oks[i][6]='background-color:'+sP[i][9]+'\;';}
 | 
				
			||||||
 | 
					ok[i][7]=saLINK;
 | 
				
			||||||
 | 
					ok[i][8]=saHOVER;
 | 
				
			||||||
 | 
					if(sP[i][10]!=""){ok[i][7]=sP[i][10];}
 | 
				
			||||||
 | 
					if(sP[i][11]!=""){ok[i][8]=sP[i][11];}
 | 
				
			||||||
 | 
					ock[i]=new Array;
 | 
				
			||||||
 | 
					ocks[i]=new Array;
 | 
				
			||||||
 | 
					if(sI[i].length>0){
 | 
				
			||||||
 | 
					for(j=0;j<sI[i].length;j++){
 | 
				
			||||||
 | 
					ock[i][j]=[bk[0],bk[1],bk[2],bk[3],bk[4],bk[5],bk[6]];
 | 
				
			||||||
 | 
					ocks[i][j]=[bks[0],bks[1],bks[2],bks[3],bks[4],bks[5],bks[6]];
 | 
				
			||||||
 | 
					if(cI[i][j].length>0){
 | 
				
			||||||
 | 
					if(cP[i][j][6]!=""){
 | 
				
			||||||
 | 
					ock[i][j][3]=cP[i][j][6]; 
 | 
				
			||||||
 | 
					ocks[i][j][3]='background-color:'+cP[i][j][6]+'\;'; 
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(cP[i][j][7]!=""){ock[i][j][5]=cP[i][j][7];}
 | 
				
			||||||
 | 
					if(cP[i][j][8]!=""){ocks[i][j][4]='background-color:'+cP[i][j][8]+'\;';}
 | 
				
			||||||
 | 
					if(cP[i][j][9]!=""){ocks[i][j][6]='background-color:'+cP[i][j][9]+'\;';}
 | 
				
			||||||
 | 
					ock[i][j][7]=saLINK;
 | 
				
			||||||
 | 
					ock[i][j][8]=saHOVER;
 | 
				
			||||||
 | 
					if(cP[i][j][10]!=""){ock[i][j][7]=cP[i][j][10];}
 | 
				
			||||||
 | 
					if(cP[i][j][11]!=""){ock[i][j][8]=cP[i][j][11];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function doNothing(){}
 | 
				
			||||||
 | 
					var bWidth=window.innerWidth;
 | 
				
			||||||
 | 
					var bHeight=window.innerHeight;
 | 
				
			||||||
 | 
					var sbaa=14;
 | 
				
			||||||
 | 
					if(!konqi){
 | 
				
			||||||
 | 
					if(ns7){sbaa=15;}
 | 
				
			||||||
 | 
					if(mac&&mz7){sbaa=16;}
 | 
				
			||||||
 | 
					if(mz7&&agt.indexOf("rc1")!=-1){sbaa=19;}
 | 
				
			||||||
 | 
					if((mz7&&win&&(agt.indexOf("windows nt 5.1")!=-1))||mac||ns6){if(document.width<=(innerWidth-30)){bWidth-=sbaa;}}
 | 
				
			||||||
 | 
					else if(mz7&&win&&(agt.indexOf("windows nt 5.0")!=-1)){if(document.width<=(innerWidth-16)){bWidth-=16;}}
 | 
				
			||||||
 | 
					else if(win){if(document.width<=(innerWidth-17)){bWidth-=17;}}
 | 
				
			||||||
 | 
					if(lin){if(document.width<=(innerWidth-17)){bWidth-=17;}}
 | 
				
			||||||
 | 
					if(menuALIGN=="free"){bWidth-=sbaa;}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(konqi&&remoteTRIGGERING){bWidth-=16;}
 | 
				
			||||||
 | 
					if(documentWIDTH>0){bWidth=documentWIDTH;}
 | 
				
			||||||
 | 
					var navH=fSIZE+5+vPADDING;
 | 
				
			||||||
 | 
					if (fSIZE<13){navH+=(13-fSIZE);}
 | 
				
			||||||
 | 
					var origH=navH;
 | 
				
			||||||
 | 
					var Mrows=new Array;var Nrows=new Array;
 | 
				
			||||||
 | 
					for(var i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					var thisT=mI[i][1];
 | 
				
			||||||
 | 
					var splitT=thisT.split('<br>');
 | 
				
			||||||
 | 
					Mrows[i]=splitT.length;
 | 
				
			||||||
 | 
					Nrows[i]=Mrows[i];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function cFun(a,b){return b-a;}
 | 
				
			||||||
 | 
					Mrows.sort(cFun);
 | 
				
			||||||
 | 
					navH=navH*Mrows[0];
 | 
				
			||||||
 | 
					var thisNavH=new Array;
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					if(menuALIGN=="free"){
 | 
				
			||||||
 | 
					thisNavH[i]=origH*Nrows[i];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					thisNavH[i]=navH;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var subNavH=sfSIZE+5+svPADDING;
 | 
				
			||||||
 | 
					if (sfSIZE<13){subNavH+=(13-sfSIZE);}
 | 
				
			||||||
 | 
					var endSpace=0;
 | 
				
			||||||
 | 
					var navSpace=0;
 | 
				
			||||||
 | 
					for (var j=0;j<mI.length;j++){
 | 
				
			||||||
 | 
					if(mI[j][2]==""){mI[j][2]=10;}
 | 
				
			||||||
 | 
					if(mI[j][1]==""){mI[j][1]=' ';}
 | 
				
			||||||
 | 
					navSpace+=mI[j][2]+bSIZE;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					navSpace+=bSIZE;
 | 
				
			||||||
 | 
					endSpace=bWidth-navSpace;
 | 
				
			||||||
 | 
					var ra=false;
 | 
				
			||||||
 | 
					if(menuALIGN=="right"){
 | 
				
			||||||
 | 
					ra=true;
 | 
				
			||||||
 | 
					absLEFT=endSpace-absLEFT;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var ca=false;
 | 
				
			||||||
 | 
					if(menuALIGN=="center"){
 | 
				
			||||||
 | 
					ca=true;
 | 
				
			||||||
 | 
					absLEFT=endSpace / 2;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var la=false;
 | 
				
			||||||
 | 
					if(menuALIGN=="left"){
 | 
				
			||||||
 | 
					la=true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var shy=0;
 | 
				
			||||||
 | 
					var shType;
 | 
				
			||||||
 | 
					if(typeof shSIZE=="number"){
 | 
				
			||||||
 | 
					if(shSIZE<0){shSIZE=0;}
 | 
				
			||||||
 | 
					shy-=shSIZE;
 | 
				
			||||||
 | 
					shType="number";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(typeof shSIZE=="string"){
 | 
				
			||||||
 | 
					shSIZE=parseInt(shSIZE);
 | 
				
			||||||
 | 
					shy+=shSIZE;
 | 
				
			||||||
 | 
					shType="string";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var tInfo,titleText,master,nav,grid,pj,nObj,ncj,sObj,snj,scj,cObj,cnj,ccj,sNode,temSNode,temCNode,shj,sLeft,slMargin,srMargin,sTop,stMargin,mSize,mNumOf,cNode,cshj,cLeft,clMargin,crMargin,cTop,ctMargin,cmSize,cNumOf;
 | 
				
			||||||
 | 
					var grs;
 | 
				
			||||||
 | 
					function showGrid(){
 | 
				
			||||||
 | 
					grs=grid.style.visibility;
 | 
				
			||||||
 | 
					if(grs=="hidden"){grid.style.visibility="visible";}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function hideGrid(){
 | 
				
			||||||
 | 
					grs=grid.style.visibility;
 | 
				
			||||||
 | 
					if(grs=="visible"){grid.style.visibility="hidden";}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function writeStatus(sTxt){
 | 
				
			||||||
 | 
					window.status=sTxt;
 | 
				
			||||||
 | 
					return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function clearChildMenus(){
 | 
				
			||||||
 | 
					cNumOf=cObj.childNodes.length;
 | 
				
			||||||
 | 
					for(i=0;i<cNumOf;i++){
 | 
				
			||||||
 | 
					cObj.removeChild(cObj.childNodes[i]);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					currentID=[currentID[0],-1,-1];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var currentID=[-1,-1,-1];
 | 
				
			||||||
 | 
					var previousID=[-1,-1,-1];
 | 
				
			||||||
 | 
					var focusID=[-1,-1,-1];
 | 
				
			||||||
 | 
					var cTimer=0;
 | 
				
			||||||
 | 
					var closeOkay=false;
 | 
				
			||||||
 | 
					var fid=0;
 | 
				
			||||||
 | 
					function clearSubMenus(){
 | 
				
			||||||
 | 
					if(currentID[0]>-1){
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					ncj=document.getElementById("maincell-"+i);
 | 
				
			||||||
 | 
					ncj.style.zIndex=zORDER+3;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ncj=document.getElementById("maincell-"+currentID[0]);
 | 
				
			||||||
 | 
					if(typeof ncj != "undefined"){
 | 
				
			||||||
 | 
					if(mI[currentID[0]][9]!=""){
 | 
				
			||||||
 | 
					ncj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ncj.style.backgroundColor=ok[currentID[0]][0];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[2]){
 | 
				
			||||||
 | 
					if(ui[0]){ncj.style.backgroundImage='url('+bk[0].src+')';}
 | 
				
			||||||
 | 
					else{ncj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[0]){ncj.style.backgroundImage='url('+bk[0].src+')';}
 | 
				
			||||||
 | 
					else{ncj.style.backgroundColor=bk[0];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ncj.firstChild.firstChild.firstChild.firstChild.firstChild.style.color=ok[currentID[0]][9];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					mNumOf=sObj.childNodes.length;
 | 
				
			||||||
 | 
					for(i=0;i<mNumOf;i++){
 | 
				
			||||||
 | 
					sObj.removeChild(sObj.childNodes[i]);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					clearChildMenus();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					writeStatus('');
 | 
				
			||||||
 | 
					currentID=[-1,-1,-1];
 | 
				
			||||||
 | 
					focusID=[-1,-1,-1];
 | 
				
			||||||
 | 
					hideGrid();
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function gridClearMenus(){
 | 
				
			||||||
 | 
					if(closeOkay){
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					clearSubMenus();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					closeOkay=true;
 | 
				
			||||||
 | 
					cTimer=setTimeout("gridClearMenus()",closeTIMER);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var wins=new Array;
 | 
				
			||||||
 | 
					var wNum=0;
 | 
				
			||||||
 | 
					function goToUrl(cUrl,cTarg){
 | 
				
			||||||
 | 
					if(cUrl=="~"||cUrl=="#"){return false;}
 | 
				
			||||||
 | 
					if(cUrl.indexOf("mailto:")!=-1){document.location=cUrl;}
 | 
				
			||||||
 | 
					else if(cUrl!=""){
 | 
				
			||||||
 | 
					if(cTarg=="_self"){self.document.location=cUrl;}
 | 
				
			||||||
 | 
					else if(cTarg=="_top"){top.document.location=cUrl;}
 | 
				
			||||||
 | 
					else if(cTarg=="_parent"){parent.document.location=cUrl;}
 | 
				
			||||||
 | 
					else if(cTarg=="_blank"){
 | 
				
			||||||
 | 
					wins[wNum]=open(cUrl,"","status=yes,scrollbars=yes,scrolling=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes");
 | 
				
			||||||
 | 
					wNum++;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(top[cTarg]){top[cTarg].document.location=cUrl}
 | 
				
			||||||
 | 
					else{document.location=cUrl;}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function mainRollover(rmNum){
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					ncj=document.getElementById("maincell-"+i);
 | 
				
			||||||
 | 
					ncj.style.zIndex=zORDER+20;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ncj=document.getElementById("maincell-"+rmNum);
 | 
				
			||||||
 | 
					if(mI[rmNum][10]!=""){
 | 
				
			||||||
 | 
					ncj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ncj.style.backgroundColor=ok[rmNum][2];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[2]){
 | 
				
			||||||
 | 
					ncj.style.backgroundImage='url('+bk[2].src+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					ncj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ncj.style.backgroundColor=bk[2];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ncj.firstChild.firstChild.firstChild.firstChild.firstChild.style.color=ok[rmNum][10];
 | 
				
			||||||
 | 
					if(altDISPLAY=="status"){
 | 
				
			||||||
 | 
					writeStatus(mI[rmNum][5]);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					tInfo=mI[rmNum][0];
 | 
				
			||||||
 | 
					if(tInfo=="#"){tInfo="";}
 | 
				
			||||||
 | 
					writeStatus(tInfo);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var kcc=-1;
 | 
				
			||||||
 | 
					var sPlay=false;
 | 
				
			||||||
 | 
					var cPlay=false;
 | 
				
			||||||
 | 
					function mainCell(mNum,gridTrue){
 | 
				
			||||||
 | 
					if(typeof mI[mNum]=="undefined"){return false;}
 | 
				
			||||||
 | 
					currentID=previousID;
 | 
				
			||||||
 | 
					clearSubMenus();
 | 
				
			||||||
 | 
					currentID=[mNum,-1,-1];
 | 
				
			||||||
 | 
					previousID=currentID;
 | 
				
			||||||
 | 
					focusID=currentID;
 | 
				
			||||||
 | 
					mainRollover(mNum);
 | 
				
			||||||
 | 
					if(sI[mNum].length>0){openSubMenu(mNum);}
 | 
				
			||||||
 | 
					if(typeof gridTrue=="undefined"){showGrid();}
 | 
				
			||||||
 | 
					return currentID;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function partialMainCell(mNum){
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					mainRollover(mNum);
 | 
				
			||||||
 | 
					if(sI[mNum].length>0){
 | 
				
			||||||
 | 
					if(previousID[1]>-1){clearCell(document.getElementById("subcell-"+mNum+"-"+previousID[1]));}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var sn,stj,shAry,chAry,swPad,shPad,nodeHtml,mDiff,wAdj,tfObj;
 | 
				
			||||||
 | 
					var kPressed=false;
 | 
				
			||||||
 | 
					var shopac='-moz-opacity:'+(shOPACITY/100);
 | 
				
			||||||
 | 
					if(!win){shopac='';}
 | 
				
			||||||
 | 
					var stt,textScale,applyWidth,applyWidthII;
 | 
				
			||||||
 | 
					function openSubMenu(mid){
 | 
				
			||||||
 | 
					sNode=document.createElement("div");
 | 
				
			||||||
 | 
					document.getElementById("manch").appendChild(sNode);
 | 
				
			||||||
 | 
					sn='';
 | 
				
			||||||
 | 
					applyWidth='width:auto;min-width:'+sP[mid][0]+'px\;white-space:nowrap\;';
 | 
				
			||||||
 | 
					if(konqi){applyWidth='width:'+sP[mid][0]+'px\;';}
 | 
				
			||||||
 | 
					sn+='<div id="subtable-'+mid+'" style="'+applyWidth+'-moz-opacity:1\;position:relative\;left:'+shy+'px\;top:'+shy+'px\;'+oks[mid][4]+'"><table cellpadding=0 cellspacing='+sbSIZE+' border=0>';
 | 
				
			||||||
 | 
					shAry=new Array;
 | 
				
			||||||
 | 
					chAry=new Array;
 | 
				
			||||||
 | 
					for(i=0;i<sI[mid].length;i++){
 | 
				
			||||||
 | 
					sn+='<tr>';
 | 
				
			||||||
 | 
					clcu='';
 | 
				
			||||||
 | 
					if(cellCLICK&&sI[mid][i][0]!=""&&sI[mid][i][0]!="#"&&sI[mid][i][0]!="~"){clcu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					cllu=' cursor:default\;';
 | 
				
			||||||
 | 
					if(sI[mid][i][0]!=""&&sI[mid][i][0]!="#"&&sI[mid][i][0]!="~"){cllu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					shAry[i]=subNavH;
 | 
				
			||||||
 | 
					var thisT=sI[mid][i][1];
 | 
				
			||||||
 | 
					var splitT=thisT.split('<br>');
 | 
				
			||||||
 | 
					var Trows=splitT.length;
 | 
				
			||||||
 | 
					if (Trows>1){shAry[i]=(subNavH*Trows)-(svPADDING*(Trows-1));}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					titleText=""; if(altDISPLAY=="title"){titleText=sI[mid][i][3];}
 | 
				
			||||||
 | 
					textScale='width:auto;min-width:'+(sP[mid][0]-(2*sbSIZE))+'px\;height:auto;min-';
 | 
				
			||||||
 | 
					if(!allowForSCALING){textScale='width:'+(sP[mid][0]-(2*sbSIZE))+'px\;';}
 | 
				
			||||||
 | 
					sn+='<td style="'+clcu+'" align='+sP[mid][2]+'><div title="'+titleText+'" class=SUBmTD onfocus="subCell('+mid+','+i+')" onmouseover="temCNode=document.getElementById(\'childmenu-'+mid+'-'+i+'\')\;if(!temCNode){subCell('+mid+','+i+')}else{partialSubCell('+mid+','+i+')}" onclick="if(cellCLICK){goToUrl(sI['+mid+']['+i+'][0],sI['+mid+']['+i+'][2])}" id="subcell-'+mid+'-'+i+'" style="'+oks[mid][3]+''+textScale+'height:'+shAry[i]+'px\;white-space:nowrap;"><div onmouseout="event.cancelBubble=true" id="subtext-'+mid+'-'+i+'" style="'+cllu+'position:relative\;font:'+sfSIZE+'px '+sfFONT+'\;font-weight:'+sfWEIGHT+'\;"><span style="color:'+ok[mid][7]+'\;font:'+sfSIZE+' '+sfFONT+'\;font-weight:'+sfWEIGHT+'\;" onclick="if(!cellCLICK){goToUrl(sI['+mid+']['+i+'][0],sI['+mid+']['+i+'][2])}">'+sI[mid][i][1]+'</span></div></div></td>';
 | 
				
			||||||
 | 
					sn+='</tr>';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					sn+='</table></div>';
 | 
				
			||||||
 | 
					sTop=parseInt(ncj.style.top)+thisNavH[mid];
 | 
				
			||||||
 | 
					if(vOFFSET<0){sTop+=vOFFSET;}if(sP[mid][3]<0){sTop+=sP[mid][3];}
 | 
				
			||||||
 | 
					if(shType=="string"){sTop-=(shSIZE*2);}
 | 
				
			||||||
 | 
					stMargin=bSIZE;
 | 
				
			||||||
 | 
					if(vOFFSET>0){stMargin+=vOFFSET;}
 | 
				
			||||||
 | 
					if(sP[mid][3]>0){stMargin+=sP[mid][3];}
 | 
				
			||||||
 | 
					stMargin+=shSIZE;
 | 
				
			||||||
 | 
					sLeft=parseInt(ncj.style.left);
 | 
				
			||||||
 | 
					if(shType=="string"){sLeft-=(shSIZE*2);}
 | 
				
			||||||
 | 
					swPad=sbSIZE;shPad=0;
 | 
				
			||||||
 | 
					if(shType=="string"){
 | 
				
			||||||
 | 
					swPad=(2*shSIZE)+sbSIZE;
 | 
				
			||||||
 | 
					shPad=(2*shSIZE);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					slMargin=0;
 | 
				
			||||||
 | 
					srMargin=0;
 | 
				
			||||||
 | 
					if(sP[mid][1]=="left"){
 | 
				
			||||||
 | 
					wAdj=false;
 | 
				
			||||||
 | 
					if((parseInt(ncj.style.top)+thisNavH[mid])>sTop&&(sLeft<(hOFFSET+sP[mid][4]+mI[mid][2]))){wAdj=true; sLeft+=mI[mid][2];}
 | 
				
			||||||
 | 
					if(hOFFSET>0){slMargin+=hOFFSET;}
 | 
				
			||||||
 | 
					if(sP[mid][4]>0){slMargin+=sP[mid][4];}
 | 
				
			||||||
 | 
					if(hOFFSET<0){sLeft+=hOFFSET;}
 | 
				
			||||||
 | 
					if(sP[mid][4]<0){sLeft+=sP[mid][4];}
 | 
				
			||||||
 | 
					if(wAdj){
 | 
				
			||||||
 | 
					if(slMargin>mI[mid][2]){slMargin-=mI[mid][2];}
 | 
				
			||||||
 | 
					else{sLeft-=(mI[mid][2]-slMargin); slMargin=0;}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(sP[mid][1]=="right"){
 | 
				
			||||||
 | 
					mSize=0;
 | 
				
			||||||
 | 
					if(hOFFSET>0){srMargin+=hOFFSET; mSize+=srMargin;}
 | 
				
			||||||
 | 
					if(sP[mid][4]>0){srMargin+=sP[mid][4]; mSize+=srMargin;}
 | 
				
			||||||
 | 
					if(hOFFSET<0){sLeft-=hOFFSET;}
 | 
				
			||||||
 | 
					if(sP[mid][4]<0){sLeft-=sP[mid][4];}
 | 
				
			||||||
 | 
					sLeft-=(sP[mid][0]-mI[mid][2]+mSize);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					slMargin+=shSIZE;
 | 
				
			||||||
 | 
					applyWidth='width:auto;min-width:'+(sP[mid][0]+slMargin)+'px\;white-space:nowrap\;';
 | 
				
			||||||
 | 
					if(konqi){applyWidth='width:'+(sP[mid][0]+slMargin)+'px\;';}
 | 
				
			||||||
 | 
					applyWidthII='width:auto;min-width:'+(sP[mid][0]+swPad-sbSIZE)+'px\;white-space:nowrap\;';
 | 
				
			||||||
 | 
					if(konqi){applyWidthII='width:'+(sP[mid][0]+swPad-sbSIZE)+'px\;';}
 | 
				
			||||||
 | 
					sNode.parentNode.innerHTML='<div onmouseover="showGrid()" id="submenu-'+mid+'" style="'+applyWidth+'visibility:hidden\;position:absolute\;left:'+sLeft+'px\;top:'+sTop+'px\;z-index:'+(zORDER+40)+'\;"><div id="subshadow-'+mid+'" style="'+shopac+'\;margin-top:'+stMargin+'px\;margin-left:'+slMargin+'px\;margin-right:'+srMargin+'px\;'+oks[mid][6]+'z-index:'+(zORDER+41)+'\;'+applyWidthII+'height:1px\;">'+sn+'</div></div>';
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					for(i=0;i<sI[mid].length;i++){
 | 
				
			||||||
 | 
					stj=document.getElementById('subtext-'+mid+'-'+i);
 | 
				
			||||||
 | 
					stt=((stj.parentNode.offsetHeight/2)-(stj.offsetHeight/2)+svtOFFSET)+"px";
 | 
				
			||||||
 | 
					stj.style.top=stt;
 | 
				
			||||||
 | 
					if(sP[mid][2]=="left"){stj.style.left=stINDENT+"px";}
 | 
				
			||||||
 | 
					if(sP[mid][2]=="right"){stj.style.left=(0-stINDENT)+"px";}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					shj=document.getElementById('subshadow-'+mid);
 | 
				
			||||||
 | 
					shj.style.height=(document.getElementById('subtable-'+mid).offsetHeight+shPad)+"px";
 | 
				
			||||||
 | 
					snj=document.getElementById('submenu-'+mid);
 | 
				
			||||||
 | 
					if(!remoteTRIGGERING){snj.style.visibility="visible";}
 | 
				
			||||||
 | 
					return snj;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var ncoNum;
 | 
				
			||||||
 | 
					function clearSubRollover(rmNum,rsNum){
 | 
				
			||||||
 | 
					if(!keepLIT){
 | 
				
			||||||
 | 
					ncoNum=ncj.id.replace("maincell-","")
 | 
				
			||||||
 | 
					ncj.firstChild.firstChild.firstChild.firstChild.firstChild.style.color=ok[ncoNum][9];
 | 
				
			||||||
 | 
					if(mI[ncoNum][9]!=""){
 | 
				
			||||||
 | 
					ncj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ncj.style.backgroundColor=ok[ncoNum][0];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[2]){
 | 
				
			||||||
 | 
					if(ui[0]){ncj.style.backgroundImage='url('+bk[0].src+')';}
 | 
				
			||||||
 | 
					else{ncj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[0]){ncj.style.backgroundImage='url('+bk[0].src+')';}
 | 
				
			||||||
 | 
					else{ncj.style.backgroundColor=bk[0];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(previousID[1]>-1){
 | 
				
			||||||
 | 
					pj=document.getElementById('subcell-'+previousID[0]+'-'+previousID[1]);
 | 
				
			||||||
 | 
					if(sP[previousID[0]][6]!=""){
 | 
				
			||||||
 | 
					pj.style.backgroundColor=ok[previousID[0]][3];
 | 
				
			||||||
 | 
					pj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					if(ui[3]){pj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{pj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[3]){pj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{pj.style.backgroundColor=bk[3];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					pj.firstChild.firstChild.style.color=ok[previousID[0]][7];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function subRollover(rmNum,rsNum){
 | 
				
			||||||
 | 
					if(sI[rmNum][rsNum][4]){
 | 
				
			||||||
 | 
					if(sP[rmNum][7]!=""){
 | 
				
			||||||
 | 
					scj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					scj.style.backgroundColor=ok[rmNum][5];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					scj.style.backgroundImage='url('+bk[5].src+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					scj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					scj.style.backgroundColor=bk[5];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					scj.firstChild.firstChild.style.color=ok[rmNum][8];
 | 
				
			||||||
 | 
					if(altDISPLAY=="status"){
 | 
				
			||||||
 | 
					writeStatus(sI[rmNum][rsNum][3]);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					tInfo=sI[rmNum][rsNum][0];
 | 
				
			||||||
 | 
					if(tInfo=="#"){tInfo="";}
 | 
				
			||||||
 | 
					writeStatus(tInfo);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var cn,ctj;
 | 
				
			||||||
 | 
					function subCell(mNum,sNum){
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					clearSubRollover();
 | 
				
			||||||
 | 
					currentID=[mNum,sNum,-1];
 | 
				
			||||||
 | 
					previousID=currentID;
 | 
				
			||||||
 | 
					focusID=currentID;
 | 
				
			||||||
 | 
					scj=document.getElementById('subcell-'+mNum+'-'+sNum);
 | 
				
			||||||
 | 
					subRollover(mNum,sNum);
 | 
				
			||||||
 | 
					openChildMenu(mNum,sNum);
 | 
				
			||||||
 | 
					showGrid();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function partialSubCell(mNum,sNum){
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					clearSubRollover();
 | 
				
			||||||
 | 
					subRollover(mNum,sNum);
 | 
				
			||||||
 | 
					if(cI[mNum][sNum].length>0){
 | 
				
			||||||
 | 
					if(previousID[2]>-1){clearCell(document.getElementById("childcell-"+mNum+"-"+sNum+"-"+previousID[2]));}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var ctt;
 | 
				
			||||||
 | 
					var evcy,evoh,evst,mctPos;
 | 
				
			||||||
 | 
					function openChildMenu(mid,cid){
 | 
				
			||||||
 | 
					clearChildMenus();
 | 
				
			||||||
 | 
					if(cI[mid][cid].length<=0){return false;}
 | 
				
			||||||
 | 
					cNode=document.createElement("div");
 | 
				
			||||||
 | 
					document.getElementById("canch").appendChild(cNode);
 | 
				
			||||||
 | 
					cn='';
 | 
				
			||||||
 | 
					applyWidth='width:auto;min-width:'+cP[mid][cid][0]+'px\;white-space:nowrap;';
 | 
				
			||||||
 | 
					if(konqi){applyWidth='width:'+cP[mid][cid][0]+'px\;';}
 | 
				
			||||||
 | 
					cn+='<div id="childtable-'+mid+'-'+cid+'" style="'+applyWidth+'-moz-opacity:1\;position:relative\;left:'+shy+'px\;top:'+shy+'px\;'+ocks[mid][cid][4]+'"><table cellpadding=0 cellspacing='+sbSIZE+' border=0>';
 | 
				
			||||||
 | 
					chAry[mid]=new Array;
 | 
				
			||||||
 | 
					for(i=0;i<cI[mid][cid].length;i++){
 | 
				
			||||||
 | 
					cn+='<tr>';
 | 
				
			||||||
 | 
					clcu='';
 | 
				
			||||||
 | 
					if(cellCLICK&&cI[mid][cid][i][0]!=""&&cI[mid][cid][i][0]!="#"&&cI[mid][cid][i][0]!="~"){clcu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					cllu=' cursor:default\;';
 | 
				
			||||||
 | 
					if(cI[mid][cid][i][0]!=""&&cI[mid][cid][i][0]!="#"&&cI[mid][cid][i][0]!="~"){cllu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					chAry[mid][i]=subNavH;
 | 
				
			||||||
 | 
					var thisT=cI[mid][cid][i][1];
 | 
				
			||||||
 | 
					var splitT=thisT.split('<br>');
 | 
				
			||||||
 | 
					var Trows=splitT.length;
 | 
				
			||||||
 | 
					if (Trows>1){chAry[mid][i]=(subNavH*Trows)-(svPADDING*(Trows-1));}
 | 
				
			||||||
 | 
					titleText=""; if(altDISPLAY=="title"){titleText=cI[mid][cid][i][3];}
 | 
				
			||||||
 | 
					textScale='width:auto;min-width:'+(cP[mid][cid][0]-(sbSIZE*2))+'px\;height:auto;min-';
 | 
				
			||||||
 | 
					if(!allowForSCALING){textScale='width:'+(cP[mid][cid][0]-(sbSIZE*2))+'px\;';}
 | 
				
			||||||
 | 
					cn+='<td style="'+clcu+'" align='+cP[mid][cid][2]+'><div title="'+titleText+'" class=SUBmTD onfocus="childCell('+mid+','+cid+','+i+')" onblur="clearCell(this)" onmouseover="childCell('+mid+','+cid+','+i+')" onclick="if(cellCLICK){goToUrl(cI['+mid+']['+cid+']['+i+'][0],cI['+mid+']['+cid+']['+i+'][2])}" id="childcell-'+mid+'-'+cid+'-'+i+'" style="'+ocks[mid][cid][3]+''+textScale+'height:'+chAry[mid][i]+'px\;white-space:nowrap;"><div onmouseout="event.cancelBubble=true" id="childtext-'+mid+'-'+cid+'-'+i+'" style="'+cllu+'position:relative\;font:'+sfSIZE+'px '+sfFONT+'\;font-weight:'+sfWEIGHT+'\;"><span style="color:'+ock[mid][cid][7]+'\;font:'+sfSIZE+' '+sfFONT+'\;font-weight:'+sfWEIGHT+'\;" onclick="if(!cellCLICK){goToUrl(cI['+mid+']['+cid+']['+i+'][0],cI['+mid+']['+cid+']['+i+'][2])}">'+cI[mid][cid][i][1]+'</span></div></div></td>';
 | 
				
			||||||
 | 
					cn+='</tr>';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					cn+='</table></div>';
 | 
				
			||||||
 | 
					cLeft=sLeft+slMargin-shSIZE;
 | 
				
			||||||
 | 
					clMargin=0;
 | 
				
			||||||
 | 
					crMargin=0;
 | 
				
			||||||
 | 
					if(cP[mid][cid][1]=="left"){
 | 
				
			||||||
 | 
					if(chhOFFSET>0){clMargin+=chhOFFSET;}
 | 
				
			||||||
 | 
					if(cP[mid][cid][4]>0){clMargin+=cP[mid][cid][4];}
 | 
				
			||||||
 | 
					if(chhOFFSET<0){cLeft+=chhOFFSET;}
 | 
				
			||||||
 | 
					if(cP[mid][cid][4]<0){cLeft+=cP[mid][cid][4];}
 | 
				
			||||||
 | 
					cLeft+=sP[mid][0];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(cP[mid][cid][1]=="right"){
 | 
				
			||||||
 | 
					mSize=0;
 | 
				
			||||||
 | 
					if(chhOFFSET>0){crMargin+=chhOFFSET; mSize+=crMargin;}
 | 
				
			||||||
 | 
					if(cP[mid][cid][4]>0){crMargin+=cP[mid][cid][4]; mSize+=crMargin;}
 | 
				
			||||||
 | 
					if(chhOFFSET<0){cLeft-=chhOFFSET;}
 | 
				
			||||||
 | 
					if(cP[mid][cid][4]<0){cLeft-=cP[mid][cid][4];}
 | 
				
			||||||
 | 
					cLeft-=cP[mid][cid][0]+mSize;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					clMargin+=shSIZE;
 | 
				
			||||||
 | 
					cTop=sTop+stMargin-shSIZE;
 | 
				
			||||||
 | 
					for(i=0;i<cid;i++){
 | 
				
			||||||
 | 
					cTop+=shAry[i]+sbSIZE;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(chvOFFSET<0){cTop+=chvOFFSET;}if(cP[mid][cid][3]<0){cTop+=cP[mid][cid][3];}
 | 
				
			||||||
 | 
					ctMargin=sbSIZE;
 | 
				
			||||||
 | 
					if(chvOFFSET>0){ctMargin+=chvOFFSET;}
 | 
				
			||||||
 | 
					if(cP[mid][cid][3]>0){ctMargin+=cP[mid][cid][3];}
 | 
				
			||||||
 | 
					ctMargin+=shSIZE;
 | 
				
			||||||
 | 
					applyWidth='width:auto;min-width:'+(cP[mid][cid][0]+clMargin)+'px\;white-space:nowrap;';
 | 
				
			||||||
 | 
					if(konqi){applyWidth='width:'+(cP[mid][cid][0]+clMargin)+'px\;';}
 | 
				
			||||||
 | 
					applyWidthII='width:auto;min-width:'+(cP[mid][cid][0]+swPad-sbSIZE)+'px\;white-space:nowrap;';
 | 
				
			||||||
 | 
					if(konqi){applyWidthII='width:'+(cP[mid][cid][0]+swPad-sbSIZE)+'px\;';}
 | 
				
			||||||
 | 
					cNode.parentNode.innerHTML='<div onmouseover="showGrid()" id="childmenu-'+mid+'-'+cid+'" style="visibility:hidden\;position:absolute\;left:'+cLeft+'px\;top:'+cTop+'px\;z-index:'+(zORDER+60)+'\;"><div id="childshadow-'+mid+'-'+cid+'" style="'+shopac+'\;margin-top:'+ctMargin+'px\;margin-left:'+clMargin+'px\;margin-right:'+crMargin+'px\;'+ocks[mid][cid][6]+'z-index:'+(zORDER+61)+'\;'+applyWidthII+'height:1px\;">'+cn+'</div></div>';
 | 
				
			||||||
 | 
					for(i=0;i<cI[mid][cid].length;i++){
 | 
				
			||||||
 | 
					ctj=document.getElementById('childtext-'+mid+'-'+cid+'-'+i);
 | 
				
			||||||
 | 
					ctt=((ctj.parentNode.offsetHeight/2)-(ctj.offsetHeight/2)+svtOFFSET)+"px";
 | 
				
			||||||
 | 
					 ctj.style.top=ctt;
 | 
				
			||||||
 | 
					if(cP[mid][cid][2]=="left"){ctj.style.left=stINDENT+"px";}
 | 
				
			||||||
 | 
					if(cP[mid][cid][2]=="right"){ctj.style.left=(0-stINDENT)+"px";}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					cshj=document.getElementById('childshadow-'+mid+'-'+cid);
 | 
				
			||||||
 | 
					cshj.style.height=(document.getElementById('childtable-'+mid+'-'+cid).offsetHeight+shPad)+"px";
 | 
				
			||||||
 | 
					cnj=document.getElementById('childmenu-'+mid+'-'+cid);
 | 
				
			||||||
 | 
					if(remoteTRIGGERING){
 | 
				
			||||||
 | 
					evcy=parseInt(cnj.style.top);
 | 
				
			||||||
 | 
					evoh=cnj.offsetHeight;
 | 
				
			||||||
 | 
					evst=window.pageYOffset;
 | 
				
			||||||
 | 
					 if((evcy+evoh)>(bHeight+evst)){
 | 
				
			||||||
 | 
					mctPos=evcy-((evcy+evoh)-(bHeight+evst));
 | 
				
			||||||
 | 
					cnj.style.top=(mctPos)+"px";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					cnj.style.visibility="visible";
 | 
				
			||||||
 | 
					return cnj;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var cident,normalClear;
 | 
				
			||||||
 | 
					function clearCell(ccj){
 | 
				
			||||||
 | 
					normalClear=true;
 | 
				
			||||||
 | 
					ccj.firstChild.firstChild.style.color=saLINK;
 | 
				
			||||||
 | 
					if(ccj.id.indexOf("subcell-")!=-1){
 | 
				
			||||||
 | 
					cident=ccj.id.replace("subcell-","");
 | 
				
			||||||
 | 
					cident=parseInt(cident);
 | 
				
			||||||
 | 
					if(sP[cident][6]!=""){
 | 
				
			||||||
 | 
					ccj.style.backgroundColor=ok[cident][3];
 | 
				
			||||||
 | 
					ccj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					normalClear=false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(sP[cident][10]!=""){
 | 
				
			||||||
 | 
					ccj.firstChild.firstChild.style.color=ok[cident][7];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(ccj.id.indexOf("childcell-")!=-1){
 | 
				
			||||||
 | 
					cident=ccj.id.replace("childcell-","");
 | 
				
			||||||
 | 
					cident=cident.split("-");
 | 
				
			||||||
 | 
					if(cP[cident[0]][cident[1]][6]!=""){
 | 
				
			||||||
 | 
					ccj.style.backgroundColor=ock[cident[0]][cident[1]][3];
 | 
				
			||||||
 | 
					ccj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					normalClear=false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(cP[cident[0]][cident[1]][10]!=""){
 | 
				
			||||||
 | 
					ccj.firstChild.firstChild.style.color=ock[cident[0]][cident[1]][7];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(normalClear){
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					if(ui[3]){ccj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{ccj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[3]){ccj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{ccj.style.backgroundColor=bk[3];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function childCell(mNum,sNum,cNum){
 | 
				
			||||||
 | 
					clearTimeout(cTimer);
 | 
				
			||||||
 | 
					closeOkay=false;
 | 
				
			||||||
 | 
					if(!keepSubLIT){
 | 
				
			||||||
 | 
					scj.firstChild.firstChild.style.color=ok[mNum][7];
 | 
				
			||||||
 | 
					if(sP[mNum][6]!=""){
 | 
				
			||||||
 | 
					scj.style.backgroundColor=ok[mNum][3];
 | 
				
			||||||
 | 
					scj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					if(ui[3]){scj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{scj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[3]){scj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{scj.style.backgroundColor=bk[3];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(previousID[2]>-1){
 | 
				
			||||||
 | 
					pj=document.getElementById('childcell-'+previousID[0]+'-'+previousID[1]+'-'+previousID[2]);
 | 
				
			||||||
 | 
					pj.firstChild.firstChild.style.color=ock[previousID[0]][previousID[1]][7];
 | 
				
			||||||
 | 
					if(cP[previousID[0]][previousID[1]][6]!=""){
 | 
				
			||||||
 | 
					pj.style.backgroundColor=ock[previousID[0]][previousID[1]][3];
 | 
				
			||||||
 | 
					pj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					if(ui[3]){pj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{pj.style.backgroundImage='url('+bnk+')';}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[3]){pj.style.backgroundImage='url('+bk[3].src+')';}
 | 
				
			||||||
 | 
					else{pj.style.backgroundColor=bk[3];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					currentID=[mNum,sNum,cNum];
 | 
				
			||||||
 | 
					previousID=currentID;
 | 
				
			||||||
 | 
					focusID=currentID;
 | 
				
			||||||
 | 
					ccj=document.getElementById('childcell-'+mNum+'-'+sNum+'-'+cNum);
 | 
				
			||||||
 | 
					if(cI[mNum][sNum][cNum][4]){
 | 
				
			||||||
 | 
					if(cP[mNum][sNum][7]!=""){
 | 
				
			||||||
 | 
					ccj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ccj.style.backgroundColor=ock[mNum][sNum][5];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if(ui[5]){
 | 
				
			||||||
 | 
					ccj.style.backgroundImage='url('+bk[5].src+')';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					ccj.style.backgroundImage='url('+bnk+')';
 | 
				
			||||||
 | 
					ccj.style.backgroundColor=bk[5];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					ccj.firstChild.firstChild.style.color=ock[mNum][sNum][8];
 | 
				
			||||||
 | 
					if(altDISPLAY=="status"){
 | 
				
			||||||
 | 
					writeStatus(cI[mNum][sNum][cNum][3]);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					tInfo=cI[mNum][sNum][cNum][0];
 | 
				
			||||||
 | 
					if(tInfo=="#"){tInfo="";}
 | 
				
			||||||
 | 
					writeStatus(tInfo);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					showGrid();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var mn='';
 | 
				
			||||||
 | 
					mn+='<div id="master" style="position:absolute\;left:0px\;top:0px\;">';
 | 
				
			||||||
 | 
					var gopac="";
 | 
				
			||||||
 | 
					if(redGRID){gopac="background-color:red";}
 | 
				
			||||||
 | 
					var grw=bWidth;
 | 
				
			||||||
 | 
					if(gridWIDTH>0){grw=gridWIDTH;}
 | 
				
			||||||
 | 
					var grh=bHeight;
 | 
				
			||||||
 | 
					if(gridHEIGHT>0){grh=gridHEIGHT;}
 | 
				
			||||||
 | 
					mn+='<div id="udm-grid" onmouseover="gridClearMenus()" style="'+gopac+'\;cursor:default\;visibility:hidden\;position:absolute\;top:0px\;left:0px\;z-index:'+(zORDER+10)+'\;width:'+grw+'px\;height:'+grh+'px\;"> </div>';
 | 
				
			||||||
 | 
					mn+='<div id="manch" style="position:absolute\;top:0px\;left:0px\;z-index:'+(zORDER+40)+'\;"></div>';
 | 
				
			||||||
 | 
					mn+='<div id="canch" style="position:absolute\;top:0px\;left:0px\;z-index:'+(zORDER+60)+'\;"></div>';
 | 
				
			||||||
 | 
					var mbc=bks[1];
 | 
				
			||||||
 | 
					var mcbc=bks[0];
 | 
				
			||||||
 | 
					var clcu,cllu,mtObj,mcLeft,strCol;
 | 
				
			||||||
 | 
					var ofh='overflow:hidden';
 | 
				
			||||||
 | 
					if(konqi){ofh='';}
 | 
				
			||||||
 | 
					var mnDisplay='';
 | 
				
			||||||
 | 
					if(remoteTRIGGERING){mnDisplay='display:none';}
 | 
				
			||||||
 | 
					if(menuALIGN!="free"){
 | 
				
			||||||
 | 
					strCol=bks[0];
 | 
				
			||||||
 | 
					if(showBORDERS){strCol=bks[1];}
 | 
				
			||||||
 | 
					if(stretchMENU||showBORDERS){
 | 
				
			||||||
 | 
					mn+='<div id="underb" style="'+mnDisplay+'\;cursor:default\;'+strCol+'visibility:visible\;position:absolute\;z-index:'+(zORDER+1)+'\;left:0px\;top:'+absTOP+'px\;width:'+bWidth+'px\;height:'+(navH+(2*bSIZE))+'px\;">';
 | 
				
			||||||
 | 
					if(stretchMENU&&showBORDERS){mn+='<div style="margin:'+bSIZE+'px\;width:'+(bWidth-(2*bSIZE))+'px\;height:'+navH+'px\;'+bks[0]+'cursor:default"> </div>';}
 | 
				
			||||||
 | 
					mn+='</div>';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					mn+='<div id="udm-navbar" style="'+mnDisplay+'\;'+bks[1]+'position:absolute\;z-index:'+(zORDER+2)+'\;left:'+absLEFT+'px\;top:'+absTOP+'\;width:'+navSpace+'px\;height:'+(navH+(2*bSIZE))+'px\;" class=mTD></div>';
 | 
				
			||||||
 | 
					mcLeft=absLEFT+bSIZE;
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					clcu='';
 | 
				
			||||||
 | 
					if(cellCLICK&&mI[i][0]!=""&&mI[i][0]!="#"&&mI[i][0]!="~"){clcu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					cllu=' cursor:default\;';
 | 
				
			||||||
 | 
					if(mI[i][0]!=""&&mI[i][0]!="#"&&mI[i][0]!="~"){cllu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					titleText=""; if(altDISPLAY=="title"){titleText=mI[i][5];}
 | 
				
			||||||
 | 
					mn+='<div title="'+titleText+'" onfocus="mainCell('+i+')" onmouseover="temSNode=document.getElementById(\'submenu-'+i+'\')\;if(!temSNode){mainCell('+i+')}else{partialMainCell('+i+')}" onmouseout="if(event.clientX<5||event.clientY<5){gridClearMenus()}" onclick="goToUrl(mI['+i+'][0],mI['+i+'][4],['+i+'])" id="maincell-'+i+'" style="'+mnDisplay+'\;z-index:'+(zORDER+3)+'\;visibility:hidden\;position:absolute\;top:'+(absTOP+bSIZE)+'px\;left:'+mcLeft+'px\;'+clcu+oks[i][0]+'width:'+mI[i][2]+'px\;height:'+thisNavH[i]+'px\;'+ofh+'"><table cellpadding=0 cellspacing=0 border=0 width="100%" height="100%" onmouseout="event.cancelBubble=true"><tr><td class=mTD style="color:'+ok[i][9]+'" align='+mI[i][3]+'><span onclick="if(!cellCLICK){goToUrl(mI['+i+'][0],mI['+i+'][4])}" id="maintext-'+i+'" style="'+cllu+'position:relative;left:0px;top:0px">'+mI[i][1]+'</span></td></tr></table></div>';
 | 
				
			||||||
 | 
					mcLeft+=bSIZE+mI[i][2];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(menuALIGN=="free"){
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					clcu='';
 | 
				
			||||||
 | 
					if(cellCLICK&&mI[i][0]!=""&&mI[i][0]!="#"&&mI[i][0]!="~"){clcu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					cllu=' cursor:default\;';
 | 
				
			||||||
 | 
					if(mI[i][0]!=""&&mI[i][0]!="#"&&mI[i][0]!="~"){cllu=' cursor:'+aCURSOR+'\;';}
 | 
				
			||||||
 | 
					mn+='<div style="'+bks[1]+'z-index:'+(zORDER+2)+'\;position:absolute\;left:'+(absLEFT+mI[i][7])+'px\;top:'+(absTOP+mI[i][6])+'px\;width:'+(mI[i][2]+(2*bSIZE))+'px\;height:'+(thisNavH[i]+(2*bSIZE))+'px\;"></div>';
 | 
				
			||||||
 | 
					titleText=""; if(altDISPLAY=="title"){titleText=mI[i][5];}
 | 
				
			||||||
 | 
					mn+='<div title="'+titleText+'" onfocus="mainCell('+i+')" onmouseover="temSNode=document.getElementById(\'submenu-'+i+'\')\;if(!temSNode){mainCell('+i+')}else{partialMainCell('+i+')}" onmouseout="if(event.clientX<5||event.clientY<5){gridClearMenus()}" onclick="if(cellCLICK){goToUrl(mI['+i+'][0],mI['+i+'][4])}" id="maincell-'+i+'" style="'+mnDisplay+'\;z-index:'+(zORDER+3)+'\;position:absolute\;left:'+(absLEFT+mI[i][7]+bSIZE)+'px\;top:'+(absTOP+mI[i][6]+bSIZE)+'px\;visibility:hidden\;'+clcu+oks[i][0]+'width:'+mI[i][2]+'px\;height:'+thisNavH[i]+'px\;'+ofh+'"><table cellpadding=0 cellspacing=0 border=0 width="100%" height="100%" onmouseout="event.cancelBubble=true"><tr><td class=mTD style="color:'+ok[i][9]+'" align='+mI[i][3]+'><span onclick="if(!cellCLICK){goToUrl(mI['+i+'][0],mI['+i+'][4])}" id="maintext-'+i+'" style="'+cllu+'position:relative;left:0px;top:0px">'+mI[i][1]+'</span></td></tr></table></div>';
 | 
				
			||||||
 | 
					mcLeft+=bSIZE+mI[i][2];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					mn+='</div>';
 | 
				
			||||||
 | 
					document.write(mn);
 | 
				
			||||||
 | 
					function clickToClose(){
 | 
				
			||||||
 | 
					clearSubMenus();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					document.onclick=clickToClose;
 | 
				
			||||||
 | 
					var mtt;
 | 
				
			||||||
 | 
					var allready=false;
 | 
				
			||||||
 | 
					function loadFunction(){
 | 
				
			||||||
 | 
					if(remoteTRIGGERING){document.addEventListener("mousemove", menuListen, false);}
 | 
				
			||||||
 | 
					if(!remoteTRIGGERING){
 | 
				
			||||||
 | 
					for(i=0;i<mI.length;i++){
 | 
				
			||||||
 | 
					mtObj=document.getElementById("maintext-"+i);
 | 
				
			||||||
 | 
					if(typeof mtObj!="undefined"){
 | 
				
			||||||
 | 
					mtt=((thisNavH[i]/2)-(mtObj.offsetHeight/2)+vtOFFSET-(vPADDING/2)-1)+"px";
 | 
				
			||||||
 | 
					if(konqi){mtt=vtOFFSET+"px";}
 | 
				
			||||||
 | 
					mtObj.style.top=mtt;
 | 
				
			||||||
 | 
					if(mI[i][3]=="left"){mtObj.style.left=tINDENT+"px";}
 | 
				
			||||||
 | 
					if(mI[i][3]=="right"){mtObj.style.left=(0-tINDENT)+"px";}
 | 
				
			||||||
 | 
					document.getElementById("maincell-"+i).style.visibility="visible";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					nav=document.getElementById("udm-navbar");
 | 
				
			||||||
 | 
					if(menuALIGN!="free"){nav.style.top=absTOP+"px";}
 | 
				
			||||||
 | 
					grid=document.getElementById("udm-grid");
 | 
				
			||||||
 | 
					sObj=document.getElementById("manch");
 | 
				
			||||||
 | 
					cObj=document.getElementById("canch");
 | 
				
			||||||
 | 
					allready=true;
 | 
				
			||||||
 | 
					genericOnloadFunction();
 | 
				
			||||||
 | 
					if(mz7){nsinit();}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					window.onload=loadFunction;
 | 
				
			||||||
 | 
					function nsinit(){if(allowRESIZE==true){setTimeout("window.onresize=redo", 1000);}}
 | 
				
			||||||
 | 
					function redo(){window.location.reload();}
 | 
				
			||||||
 | 
					if(!mz7){if(allowRESIZE==true){window.onresize=new Function("window.location.reload()");}}
 | 
				
			||||||
 | 
					var doListen=true;
 | 
				
			||||||
 | 
					var mtPos,mtProps,scaroTop,ecX,ecY;
 | 
				
			||||||
 | 
					function menuListen(e){
 | 
				
			||||||
 | 
					if(doListen){mtPos=[e.clientX+32,e.clientY];}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function activateMenu(mmNum){
 | 
				
			||||||
 | 
					if(!allready||typeof mtPos=="undefined"){return false;}
 | 
				
			||||||
 | 
					if(typeof sP[mmNum]=="undefined"||!remoteTRIGGERING){return false;}
 | 
				
			||||||
 | 
					doListen=false;
 | 
				
			||||||
 | 
					ecX=mtPos[0];
 | 
				
			||||||
 | 
					ecY=mtPos[1]
 | 
				
			||||||
 | 
					vOFFSET=0;
 | 
				
			||||||
 | 
					hOFFSET=0;
 | 
				
			||||||
 | 
					sP[mmNum][3]=0;
 | 
				
			||||||
 | 
					sP[mmNum][4]=0;
 | 
				
			||||||
 | 
					mainCell(mmNum,false);
 | 
				
			||||||
 | 
					scaroTop=window.pageYOffset;
 | 
				
			||||||
 | 
					for(i=0;i<sI[mmNum].length;i++){
 | 
				
			||||||
 | 
					cP[mmNum][i][1]="left";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					mtProps=[snj.offsetWidth,snj.offsetHeight];
 | 
				
			||||||
 | 
					if(mtPos[0]>(bWidth/2)){
 | 
				
			||||||
 | 
					mtPos[0]=ecX-64-mtProps[0]; 
 | 
				
			||||||
 | 
					for(i=0;i<sI[mmNum].length;i++){
 | 
				
			||||||
 | 
					cP[mmNum][i][1]="right";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					if(konqi){
 | 
				
			||||||
 | 
					if((mtPos[1]+mtProps[1])>(bHeight+scaroTop)){
 | 
				
			||||||
 | 
					mtPos[1]=(ecY)-((mtPos[1]+mtProps[1])-(bHeight+scaroTop));
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					if((mtPos[1]+mtProps[1])>bHeight){
 | 
				
			||||||
 | 
					mtPos[1]=(ecY)-((mtPos[1]+mtProps[1])-bHeight);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					hOFFSET=mtPos[0];
 | 
				
			||||||
 | 
					vOFFSET=mtPos[1];
 | 
				
			||||||
 | 
					snj.style.left=hOFFSET+"px";
 | 
				
			||||||
 | 
					if(konqi){snj.style.top=(vOFFSET)+"px";}
 | 
				
			||||||
 | 
					else{snj.style.top=(vOFFSET+scaroTop)+"px";}
 | 
				
			||||||
 | 
					ncj.style.left=(hOFFSET)+"px";
 | 
				
			||||||
 | 
					if(konqi){ncj.style.top=((vOFFSET)-thisNavH[mmNum]-bSIZE)+"px";}
 | 
				
			||||||
 | 
					else{ncj.style.top=((vOFFSET+scaroTop)-thisNavH[mmNum]-bSIZE)+"px";}
 | 
				
			||||||
 | 
					sLeft=parseInt(ncj.style.left);
 | 
				
			||||||
 | 
					if(shType=="string"){sLeft-=(shSIZE*2);}
 | 
				
			||||||
 | 
					sTop=parseInt(ncj.style.top)+thisNavH[mmNum];
 | 
				
			||||||
 | 
					grid.style.top=scaroTop+"px";
 | 
				
			||||||
 | 
					remoteShow(snj);
 | 
				
			||||||
 | 
					doListen=true;
 | 
				
			||||||
 | 
					return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var showTimer;
 | 
				
			||||||
 | 
					var showCount=0;
 | 
				
			||||||
 | 
					var showPassObj;
 | 
				
			||||||
 | 
					function remoteShow(showObj){
 | 
				
			||||||
 | 
					showPassObj=showObj;
 | 
				
			||||||
 | 
					if(showCount==1){
 | 
				
			||||||
 | 
					clearTimeout(showTimer);
 | 
				
			||||||
 | 
					showCount=0;
 | 
				
			||||||
 | 
					showObj.style.visibility="visible"; 
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					else{
 | 
				
			||||||
 | 
					showCount=1;
 | 
				
			||||||
 | 
					showTimer=setTimeout("remoteShow(showPassObj)",40);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										2
									
								
								addons/menu_bar/menu_ns4.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										2
									
								
								addons/menu_bar/menu_op5.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										2
									
								
								addons/menu_bar/menu_op6.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										13
									
								
								addons/menu_bar/sniffer.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										51
									
								
								addons/menu_bar/style.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,51 @@
 | 
				
			|||||||
 | 
					//UDMv3.6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//**DO NOT EDIT THIS ******************************************
 | 
				
			||||||
 | 
					if(!exclude){
 | 
				
			||||||
 | 
					var d=document;var mrSize,srSize;
 | 
				
			||||||
 | 
					if(typeof fSIZE=="number") { mrSize=fSIZE+"px"; }
 | 
				
			||||||
 | 
					else {if(fSIZE=="x-small") {mrSize="xx-small";if(com){mrSize="x-small";}fSIZE=10;}else if(fSIZE=="small") {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}else if(fSIZE=="medium") {mrSize="small";if(com){mrSize="medium";}fSIZE=16;}else if(fSIZE=="large") {mrSize="medium";if(com){mrSize="large";}fSIZE=19;}else if(fSIZE=="x-large") {mrSize="large";if(com){mrSize="x-large";}fSIZE=24;}else {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}}
 | 
				
			||||||
 | 
					if(menuALIGN=="free") { mrSize=fSIZE+"px"; }
 | 
				
			||||||
 | 
					if(typeof sfSIZE=="number") { srSize=sfSIZE+"px"; }
 | 
				
			||||||
 | 
					else {if(sfSIZE=="x-small") {srSize="xx-small";if(com){srSize="x-small";}sfSIZE=10;}else if(sfSIZE=="small") {srSize="x-small";if(com){srSize="small";}sfSIZE=13;}else if(sfSIZE=="medium") {srSize="small";if(com){srSize="medium";}sfSIZE=16;}else if(sfSIZE=="large") {srSize="medium";if(com){srSize="large";}sfSIZE=19;}else if(sfSIZE=="x-large") {srSize="large";if(com){srSize="x-large";}sfSIZE=24;}else {srSize="x-small";if(com){srSize="small";}sfSIZE=13;}}
 | 
				
			||||||
 | 
					if(menuALIGN=="free") { srSize=sfSIZE+"px"; }
 | 
				
			||||||
 | 
					if((!mac&&ns4)||(mac&&op5)){fSIZE+=1;sfSIZE+=1;}
 | 
				
			||||||
 | 
					if(bSIZE<0)bSIZE=0;if(fSIZE<5)fSIZE=5;if(tINDENT<0)tINDENT=0;if(vPADDING<0)vPADDING=0;if(sbSIZE<0)sbSIZE=0;if(sfSIZE<5) sfSIZE=5;if(stINDENT<0)stINDENT=0;if(svPADDING<0)svPADDING=0;if(fWEIGHT=="")fWEIGHT="normal";if(sfWEIGHT=="")sfWEIGHT="normal";if(shSIZE<0){shSIZE=0;}if(cellCLICK==mu){cellCLICK=true;}
 | 
				
			||||||
 | 
					if(menuALIGN=="virtual"){remoteTRIGGERING=true;menuALIGN="left";allowRESIZE=true;staticMENU=false;}
 | 
				
			||||||
 | 
					var stySTR='';
 | 
				
			||||||
 | 
					if(ns4){stySTR+='<style><!--';stySTR+='.translink\{background-color:transparent\;\}';stySTR+='.mTD A \{color:'+aLINK+'\;font-weight:'+fWEIGHT+'\;\}';stySTR+='.mTD A:Link \{color:'+aLINK+'\}';stySTR+='.mTD A:Visited \{color:'+aLINK+'\}';stySTR+='.mTD A:Active,.mTD A:Link,.mTD A:Visited,.mTD A:Hover\{font-weight:'+fWEIGHT+'\;font-size:'+fSIZE+'px\;font-family:'+fFONT+'\;text-decoration:'+aDEC+'\;position:relative\;\}';stySTR+='.SUBmTD A \{ color:'+saLINK+'\;font-weight:'+sfWEIGHT+'\;\}';stySTR+='.SUBmTD A:Link \{color:'+saLINK+'\}';stySTR+='.SUBmTD A:Visited \{color:'+saLINK+' \}';stySTR+='.SUBmTD A:Active,.SUBmTD A:Link,.SUBmTD A:Visited,.SUBmTD A:Hover\{font-weight:'+sfWEIGHT+'\;font-size:'+sfSIZE+'px\;font-family:'+sfFONT+'\;text-decoration:'+saDEC+'\;\}';}
 | 
				
			||||||
 | 
					else{stySTR+='<style><!--';stySTR+='.mTD,.mTD A \{white-space:nowrap;color:'+aLINK+'\;font-weight:'+fWEIGHT+'\;\}';stySTR+='.mTD,.mTD A:Link \{color:'+aLINK+'\}';stySTR+='.mTD A:Visited \{color:'+aLINK+'\}';stySTR+='.mTD,.mTD A:Active,.mTD A:Link,.mTD A:Visited,.mTD A:Hover\{font-weight:'+fWEIGHT+'\;font-size:'+fSIZE+'px\;font-family:'+fFONT+'\;text-decoration:'+aDEC+'\;position:relative\;\}';stySTR+='.SUBmTD,.SUBmTD A \{ white-space:nowrap;color:'+saLINK+'\;font-weight:'+sfWEIGHT+'\;\}';stySTR+='.SUBmTD,.SUBmTD A:Link \{color:'+saLINK+'\}';stySTR+='.SUBmTD A:Visited \{color:'+saLINK+' \}';stySTR+='.SUBmTD,.SUBmTD A:Active,.SUBmTD A:Link,.SUBmTD A:Visited,.SUBmTD A:Hover\{font-weight:'+sfWEIGHT+'\;font-size:'+sfSIZE+'px\;font-family:'+sfFONT+'\;text-decoration:'+saDEC+'\;\}';if(ie&&hideSELECT){stySTR+='select\{visibility:visible\;\}';}if(ie5){stySTR+='.u\{text-decoration:underline\;\}';}}
 | 
				
			||||||
 | 
					//*************************************************************
 | 
				
			||||||
 | 
					//****##### USE THIS SPACE FOR NEW STYLE DEFINITIONS #####*****
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var cl='#0000cc'; var fs=14;
 | 
				
			||||||
 | 
					if((win&&ns4)||(mac&&op5)){fs=15;if(ns4){cl='#009600';}}
 | 
				
			||||||
 | 
					stySTR+='.roman \{font-size:'+fs+'px\; color:'+cl+'\; background-color:white\; font-family:times new roman\; \}';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//** DO NOT EDIT THIS ****************************************
 | 
				
			||||||
 | 
					stySTR+='//--></style>';d.write(stySTR);}
 | 
				
			||||||
 | 
					function genericOnloadFunction() {
 | 
				
			||||||
 | 
					//*************************************************************
 | 
				
			||||||
 | 
					//****##### USE THIS SPACE TO DEFINE ONLOAD FUNCTIONS #####****
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//** DO NOT EDIT THIS *****************************************
 | 
				
			||||||
 | 
					if(ns4){nsinit();}}
 | 
				
			||||||
 | 
					//*************************************************************
 | 
				
			||||||
							
								
								
									
										5
									
								
								addons/open_db.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					<?
 | 
				
			||||||
 | 
						global $conexion, $id;
 | 
				
			||||||
 | 
						$conexion = mysql_connect( 'localhost', 'infdj_users', 'infdj220502' ) OR die("No puedo conectar");
 | 
				
			||||||
 | 
						$id = mysql_select_db( 'infdj_com', $conexion ) OR die("No puedo abrir Base de Datos");
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										19
									
								
								addons/remark.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					<?
 | 
				
			||||||
 | 
					 if ( isset( $mod ) && !empty( $mod ) )
 | 
				
			||||||
 | 
					 {
 | 
				
			||||||
 | 
					  	 $fp = fopen("destacado.txt","wb"); 
 | 
				
			||||||
 | 
					         fwrite($fp,$mod, strlen($mod) ); 
 | 
				
			||||||
 | 
					         fclose($fp); 
 | 
				
			||||||
 | 
						 echo "<h1>Noticia destacada: modificada</h1>";
 | 
				
			||||||
 | 
						 echo "<br><br><br><a href=\"./\">Volver al inicio del portal</a>";
 | 
				
			||||||
 | 
					 } else {
 | 
				
			||||||
 | 
						 $fp = fopen("destacado.txt","r"); 
 | 
				
			||||||
 | 
					         $file = fread($fp,filesize("destacado.txt")); 
 | 
				
			||||||
 | 
					         fclose($fp); 
 | 
				
			||||||
 | 
						 
 | 
				
			||||||
 | 
						 echo "<h1>Noticia destacada</h1><br><br>";
 | 
				
			||||||
 | 
						 echo "<form name=ndest method=POST action=\"./?dgo=addons/remark.php\">";
 | 
				
			||||||
 | 
						 echo "<textarea name=mod rows=\"10\" cols=\"30\">$file</textarea>";
 | 
				
			||||||
 | 
						 echo "<br><br><input type=submit name=B value=Enviar></form>";	 
 | 
				
			||||||
 | 
					 }
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										29
									
								
								addons/useronline.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,29 @@
 | 
				
			|||||||
 | 
					<?
 | 
				
			||||||
 | 
					 /**
 | 
				
			||||||
 | 
					   La BD ya debe estar abierta, y las variables $user_auth y $user_id inicializadas
 | 
				
			||||||
 | 
					 **/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 // Update user-online
 | 
				
			||||||
 | 
					 $hora	  = time();
 | 
				
			||||||
 | 
					 $caducado= $hora-(300);
 | 
				
			||||||
 | 
					 $ip	  = getenv(REMOTE_ADDR);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 if ( $user_auth ) 
 | 
				
			||||||
 | 
					 {
 | 
				
			||||||
 | 
						$uid 	= $user_id;
 | 
				
			||||||
 | 
						$result = @mysql_query("UPDATE useronline SET hora='$hora', ip='$ip' WHERE $uid='$user_id'");
 | 
				
			||||||
 | 
					 } else {
 | 
				
			||||||
 | 
						$uid    = 	-1;
 | 
				
			||||||
 | 
						$result = @mysql_query("UPDATE useronline SET hora='$hora' WHERE $ip='$ip' AND $uid='-1'");
 | 
				
			||||||
 | 
					 }
 | 
				
			||||||
 | 
					 if ( @mysql_numrows($result) < 1 )
 | 
				
			||||||
 | 
						$result	= @mysql_query("INSERT INTO useronline VALUES ('$hora','$ip','$uid')",$conexion);		
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 // $result		=	@mysql_query("DELETE FROM useronline WHERE hora<'$caducado'",$conexion);	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 $result = @mysql_query("SELECT DISTINCT uid FROM useronline WHERE uid>0 AND hora>'$caducado'",$conexion);
 | 
				
			||||||
 | 
					 $ureg   = @mysql_numrows($result);
 | 
				
			||||||
 | 
					 $result = @mysql_query("SELECT DISTINCT ip FROM useronline WHERE uid<0 AND hora>'$caducado'",$conexion);
 | 
				
			||||||
 | 
					 $uinv   = @mysql_numrows($result);
 | 
				
			||||||
 | 
					 $result = @mysql_query("DELETE FORM useronline WHERE hora<'".($caducado-(2678400))."'", $conexion );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										84
									
								
								box.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,84 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<head>
 | 
				
			||||||
 | 
					<meta http-equiv="Content-Type"
 | 
				
			||||||
 | 
					content="text/html; charset=iso-8859-1">
 | 
				
			||||||
 | 
					<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
 | 
				
			||||||
 | 
					<title></title>
 | 
				
			||||||
 | 
					</head>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<body bgcolor="#000080">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<table border="0" cellpadding="0" cellspacing="0" width="167">
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td width="5"><img src="images/box/box_supizq.gif"
 | 
				
			||||||
 | 
					        width="5" height="17"></td>
 | 
				
			||||||
 | 
					        <td background="images/box/box_supmini.gif"><img
 | 
				
			||||||
 | 
					        src="images/box/txt_enlaces.gif" width="116" height="17"></td>
 | 
				
			||||||
 | 
					        <td width="9"><img src="images/box/box_supder.gif"
 | 
				
			||||||
 | 
					        width="9" height="17"></td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td width="5" background="images/box/box_medizq.gif"><img
 | 
				
			||||||
 | 
					        src="images/box/box_medizq.gif" width="5" height="17"></td>
 | 
				
			||||||
 | 
					        <td bgcolor="#2067BE" class="box"><form method="POST">
 | 
				
			||||||
 | 
					            <p align="center"><br>
 | 
				
			||||||
 | 
					            <select name="enlaces" size="1">
 | 
				
			||||||
 | 
					                <option>:: enlaces ::</option>
 | 
				
			||||||
 | 
					                <option>Productos</option>
 | 
				
			||||||
 | 
					                <option>Drivers</option>
 | 
				
			||||||
 | 
					                <option>Foro</option>
 | 
				
			||||||
 | 
					                <option>Chat</option>
 | 
				
			||||||
 | 
					            </select></p>
 | 
				
			||||||
 | 
					        </form>
 | 
				
			||||||
 | 
					        <p>P<EFBFBD>ginas hospedadas:<br>
 | 
				
			||||||
 | 
					        :: <a href="http://jd.infdj.com" target="_blank"
 | 
				
			||||||
 | 
					        class="box">JDsoft</a><br>
 | 
				
			||||||
 | 
					        :: <a href="http://sscript.infdj.com" target="_blank"
 | 
				
			||||||
 | 
					        class="box">SScript</a></p>
 | 
				
			||||||
 | 
					        </td>
 | 
				
			||||||
 | 
					        <td background="images/box/box_medder.gif"><img
 | 
				
			||||||
 | 
					        src="images/box/box_medder.gif" width="9" height="19"></td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td width="5"><img src="images/box/box_infizq.gif"
 | 
				
			||||||
 | 
					        width="5" height="19"></td>
 | 
				
			||||||
 | 
					        <td valign="top" background="images/box/box_infmed.gif"
 | 
				
			||||||
 | 
					        class="box"><img src="images/box/box_infmed0.gif"
 | 
				
			||||||
 | 
					        align="top" width="87" height="19"> </td>
 | 
				
			||||||
 | 
					        <td><img src="images/box/box_infder.gif" width="9"
 | 
				
			||||||
 | 
					        height="19"></td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					</table>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p><br>
 | 
				
			||||||
 | 
					</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<hr>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p><br>
 | 
				
			||||||
 | 
					.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<table border="0" cellpadding="0" cellspacing="0" width="167">
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td width="5"><img src="images/box/box_supizq.gif"
 | 
				
			||||||
 | 
					        width="5" height="17"></td>
 | 
				
			||||||
 | 
					        <td background="images/box/box_supmini.gif"><img
 | 
				
			||||||
 | 
					        src="images/box/txt_enlaces.gif" width="116" height="17"></td>
 | 
				
			||||||
 | 
					        <td width="9"><img src="images/box/box_supder.gif"
 | 
				
			||||||
 | 
					        width="9" height="17"></td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					</table>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<table border="0" cellpadding="0" cellspacing="1" width="163"
 | 
				
			||||||
 | 
					bgcolor="#000000" bordercolordark="#000000"
 | 
				
			||||||
 | 
					bordercolorlight="#000000">
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td bgcolor="#2067BE">esto es una<p>prueba </p>
 | 
				
			||||||
 | 
					        <p>para ver la nueva (y mas r<>pida) caja</p>
 | 
				
			||||||
 | 
					        <p> </p>
 | 
				
			||||||
 | 
					        </td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					</table>
 | 
				
			||||||
 | 
					</body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										38
									
								
								default.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,38 @@
 | 
				
			|||||||
 | 
					<?
 | 
				
			||||||
 | 
					  $sdiv = '<div style="visibility: visible; position: relative; width: 100%; height: 150px;overflow: auto;">';
 | 
				
			||||||
 | 
					  $ediv = '</div>';
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
 | 
					<table border="0" cellpadding="0" width="100%">
 | 
				
			||||||
 | 
					    <tr>
 | 
				
			||||||
 | 
					        <td align="center" valign="top" width="50%">
 | 
				
			||||||
 | 
					<?
 | 
				
			||||||
 | 
						 makeCBox( 285, "PRODUCTO AL AZAR-1", $sdiv."Base de datos bloqueada<br>Acceso temporalmente restringido<br><br><br>ok!".$ediv, "comprar" );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
 | 
						</td>
 | 
				
			||||||
 | 
					        <td align="center" valign="top" width="50%">
 | 
				
			||||||
 | 
					<?
 | 
				
			||||||
 | 
						 makeCBox( 285, "PRODUCTO AL AZAR-2", $sdiv."Base de datos bloqueada<br>Acceso temporalmente restringido<br><br><br>ok!".$ediv, "comprar" );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
 | 
						</td>
 | 
				
			||||||
 | 
					    </tr><tr>
 | 
				
			||||||
 | 
					        <td align="center" valign="top" width="50%">
 | 
				
			||||||
 | 
					<?
 | 
				
			||||||
 | 
						 $fp = fopen("destacado.txt","r"); 
 | 
				
			||||||
 | 
					         $file = fread($fp,filesize("destacado.txt")); 
 | 
				
			||||||
 | 
					         fclose($fp); 
 | 
				
			||||||
 | 
						 
 | 
				
			||||||
 | 
						 makeCBox( 285, "Noticia destacada", $sdiv. $file .$ediv, "+ info" );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
 | 
						</td>
 | 
				
			||||||
 | 
					        <td align="center" valign="top" width="50%">
 | 
				
			||||||
 | 
					<?
 | 
				
			||||||
 | 
						 makeCBox( 285, "PRODUCTO AL AZAR-3", $sdiv."Base de datos bloqueada<br>Acceso temporalmente restringido<br><br><br>ok!".$ediv, "comprar" );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
 | 
						</td>
 | 
				
			||||||
 | 
					    </tr>
 | 
				
			||||||
 | 
					</table>
 | 
				
			||||||
 | 
					<br>
 | 
				
			||||||
 | 
					<? 
 | 
				
			||||||
 | 
					 echo "<br>";
 | 
				
			||||||
 | 
					 makeCBox( 575, "Noticias del sector", '<iframe SRC="imente.htm" NAME="not_sec" WIDTH="565" HEIGHT="200" ALIGN="center" frameborder=0><div style="visibility: visible; position: relative; width: 100%; height: 200px;overflow: auto;"><script src="http://afiliados.imente.com/code.cgi?infdjcom"></script></div></iframe>', '' );
 | 
				
			||||||
 | 
					?>
 | 
				
			||||||
							
								
								
									
										17
									
								
								destacado.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					<img src="http://www.junta-andalucia.es/portal/jdamorph6.gif" ALIGN="LEFT">
 | 
				
			||||||
 | 
					La Junta de Andalucia ha comenzado una campa<70>a de Ayudas para la adquisici<63>n de equipos inform<72>ticos.<BR>
 | 
				
			||||||
 | 
					<BR>
 | 
				
			||||||
 | 
					Mediante la cual te subvencionan el 50% del ordenador.<BR>
 | 
				
			||||||
 | 
					<BR>
 | 
				
			||||||
 | 
					<BR>AMD XP1900Mhz
 | 
				
			||||||
 | 
					<BR>>> Pb Elite Group K7 DDR
 | 
				
			||||||
 | 
					<BR>
 | 
				
			||||||
 | 
					<BR>>> 128 Mb RAM
 | 
				
			||||||
 | 
					<BR>>> 40 Gb
 | 
				
			||||||
 | 
					<BR>>> AGP 32Mb
 | 
				
			||||||
 | 
					<BR>>> Modem 56Kps
 | 
				
			||||||
 | 
					<BR>>> CD-ROM 52x
 | 
				
			||||||
 | 
					<BR>>> Impresora
 | 
				
			||||||
 | 
					<BR>>> Windows XP Home
 | 
				
			||||||
 | 
					<BR>>> StarOffice 5.2
 | 
				
			||||||
 | 
					<BR><BR>Por casi 450<35>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								images/actions/cancel.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 64 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/actions/down.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 61 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/actions/up.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 61 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bg.jpg
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 39 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_der.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 453 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_derinf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 142 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_izq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 456 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_izqinf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 141 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_med.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 256 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_crist_medinf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 85 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_logo_inf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 525 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_logo_med.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_logo_sup.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.9 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_med.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 190 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/bm_minf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 115 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bm_minf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 86 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_finf.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 513 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_fmed.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 290 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_fsup.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 466 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_infder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 173 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_infizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 153 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_infmed.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 109 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_infmed0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 224 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_medder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 94 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_medizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 107 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_supder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 174 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_supder1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 172 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_supizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 147 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_supmed.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 138 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/box_supmini.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 356 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_first0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 195 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_first1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 206 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_last0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 194 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_last1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 208 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_next0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 177 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_next1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 196 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_prior0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 175 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/bt_prior1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 192 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/cbox_infmed0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 138 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/cbox_infmed1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 138 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/cbox_infmed2.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 158 B  | 
							
								
								
									
										8
									
								
								images/box/index.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <title>:: No dispone de permisos para acceder a esta carpeta ::</title>
 | 
				
			||||||
 | 
					  <META CONTENT="0; URL=/" HTTP-EQUIV="REFRESH">
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					 <body>
 | 
				
			||||||
 | 
					 </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								images/box/ln.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 61 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/txt_enlaces.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 628 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/txt_ident.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 506 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/txt_minichat.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 658 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/box/txt_noticias.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 409 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_infder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 138 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_infizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 172 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_infmed.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 78 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_infmed0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 290 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_medder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 104 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_medizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 78 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_supder.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 137 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_supder1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 143 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_supizq.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 118 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_supmed.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 109 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/box_supmini.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 327 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/cbox_infmed0.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 110 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/cbox_infmed1.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 107 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/boxr/cbox_infmed2.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 124 B  | 
							
								
								
									
										8
									
								
								images/boxr/index.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <title>:: No dispone de permisos para acceder a esta carpeta ::</title>
 | 
				
			||||||
 | 
					  <META CONTENT="0; URL=/" HTTP-EQUIV="REFRESH">
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					 <body>
 | 
				
			||||||
 | 
					 </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								images/boxr/txt_admin.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 230 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/enviar.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 774 B  | 
							
								
								
									
										
											BIN
										
									
								
								images/images.rar
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										8
									
								
								images/index.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					<html>
 | 
				
			||||||
 | 
					 <head>
 | 
				
			||||||
 | 
					  <title>:: No dispone de permisos para acceder a esta carpeta ::</title>
 | 
				
			||||||
 | 
					  <META CONTENT="0; URL=/" HTTP-EQUIV="REFRESH">
 | 
				
			||||||
 | 
					 </head>
 | 
				
			||||||
 | 
					 <body>
 | 
				
			||||||
 | 
					 </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								images/infdj.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.6 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								images/lb.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 69 B  |