function openWin(picSrc,tit,top,left,height,width,bgcolor){
newWin = window.open('','','top='+top+',left='+left+',height='+height+',width='+width+',toolbar=no,menubar=no,scrollbars=no');
newWin.document.write("<head><title>"+ tit +"</title></head>");
newWin.document.write("<body style='background:url(./preparatoria/cargando.jpg);background-repeat:no-repeat;background-position:center;background-color:#"+bgcolor+"' onContextMenu='return false'><p align=center>");
newWin.document.write("<img src=" + picSrc + ">");
newWin.document.write("<br><form><input type='button' value='Cerrar' onclick='JavaScript:window.close()' style='cursor:hand;width:90'>");
newWin.document.write("</form></p></body>");
}

