function opensub(theIMG,width,height,title)
{
var lTITLE = (title) ? title : "Cabrera Vaitier S.L.";
var lWIDTH = (width)  ? width : 431; 
var lHEIGHT = (height) ? height : 310; 
var theWin = window.open("","subWin","dependent,left=10,top=120,HEIGHT="+lHEIGHT+",WIDTH="+lWIDTH);
theWin.focus();
theWin.document.open();
theWin.document.write("<HTML><HEAD><TITLE>"+lTITLE+"</TITLE>");
theWin.document.write("<SCRIPT>var x = (opener) ? 1 :0; if (!x) {window.location = 'index.html' }</SCRIPT></HEAD>");
theWin.document.write("<STYLE TYPE='text/css'>");
theWin.document.write("#imgwin {position:absolute; visibility:visible; z-index:90; top:0px; left:0px;}")
theWin.document.write("#fermer {position:absolute; visibility:visible; z-index:100; top:0px; left:0px;}</STYLE>");
theWin.document.write("</HEAD><BODY bgcolor='#ffffff'>")
theWin.document.write("<DIV ID='imgwin'>");
theWin.document.write("<IMG SRC="+theIMG+">");
theWin.document.write("</DIV>");
theWin.document.write("<DIV ID='fermer'>");
theWin.document.write("<a href='javascript:window.close()'><IMG SRC='vstack/popbar.jpg' border = 0></a>");
theWin.document.write("</DIV>");
theWin.document.write("</BODY></HTML>");
theWin.document.close();
}

function MM_miniWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);

}
