<!-- Inicio
timeout =15; // Cierra la ventana despues de determinados segundos, COLOCAR 0 para nunca cerrar

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=0,top=0,width=" + (WIDTH+30) + ",height=" + (HEIGHT+180);

text = "<html><head><title>Previsualización-Grande</title></head><body bgcolor='white'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Esta ventana se cerrará en  " + timeout + " segundos.<p align=left>Queda rigurosamente prohibida, sin la autorización escrita de los titulares del <b>'Copyright'</b> bajo las sanciones establecidas en las leyes, la reproducción parcial o total de las imágenes alojadas en este Sitio Web por cualquier medio o procedimiento.<br><br><font size=1>©1998-2001 Tornillos y Partes Plaza Ltda.<br><a href='mailto:webmaster@tornillosypartes.com.co'>webmaster@tornillosypartes.com.co</a></font>";

text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//  End -->
