//--------------------------------------------------
// Funcion showImg:
// Crea un popup del tamaņo de la imagen a mostrar
// Autor: Sandro Jurado
//--------------------------------------------------

function showImg(nomImg, w, h) {

showimage = window.open('','','width='+(700)+', height='+(500)+', menubar=0, scrollbars=yes, statusbar=0');
showimage.document.writeln('<html><head><title>COMANDOSVR.COM</title>');
showimage.document.writeln('<style> ');
showimage.document.writeln('body {');
showimage.document.writeln('	scrollbar-face-color: #000080;');
showimage.document.writeln('	scrollbar-highlight-color: #000000;');
showimage.document.writeln('	scrollbar-shadow-color: #ffffff;');
showimage.document.writeln('	scrollbar-arrow-color: #ffffff;');
showimage.document.writeln('	scrollbar-3dlight-color: #ffffff;');
showimage.document.writeln('	scrollbar-darkshadow-color: #000080;');
showimage.document.writeln('	scrollbar-track-color: #000000;');
showimage.document.writeln('	background-color: #000000;');
showimage.document.writeln('} ');
showimage.document.writeln('</style></head>');
showimage.document.writeln('<body topmargin=0 leftmargin=0>\n');
showimage.document.writeln('<center><img src=\"'+nomImg+'\" name=\"verimagen\"></center>\n');
showimage.document.writeln('</body></html>\n');
}