function enlarge(imagen,ancho,alto) {
MiVentana=window.open("","","toolbar=no,directories=no,menubar=no,status=no,titlebar=no,top=0,left=0");
MiVentana.document.write("<html><head><TITLE>MotorVike.com</TITLE></head><body bgcolor='#000000' topmargin='0' leftmargin='0'><img src='");MiVentana.document.write(imagen);MiVentana.document.write("' border='0' style='display:block' /></body></html>");
MiVentana.resizeTo(ancho,alto)
MiVentana.document.close();
}