|    
			
				30/12/2004, 14:54
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: diciembre-2004 
						Mensajes: 32
					 Antigüedad: 20 años, 10 meses Puntos: 0 |  | 
  |  esto tal vez sirva  
  function doThisFirst() {alert("Changing current location")
 }
 
 function doThisNext()  {
 location.href="myotherpage.html"
 }
 
 function doThese() {
 doThisFirst()
 doThisNext()
 }
 
 <a href="javascript:null()" onClick="doThese()"><img src="image.jpg"></a>
     |