// JavaScript Document
function detail(Imag, w, h){
   var myWindow = window.open('', 'detail', 'fullscreen=0, scrollbars=1, toolbar=0,location=0,directories=0,status=0,menubar=0, resizable=1,copyhistory=0,width=' + w + ', height=' + h);
   myWindow.document.open();
   myWindow.document.write('<HTML><HEAD><TITLE>Detail obrázku</TITLE></HEAD>');
   myWindow.document.write('<BODY BGCOLOR="green" leftmargin="0" bottommargin="0" rightmargin="0" topmargin="0"><CENTER><IMG name="obr" HSPACE=0 VSPACE=0 SRC='+Imag+' onClick="javascript:window.close()"></CENTER>');
   myWindow.document.write('</BODY></HTML>');
   myWindow.document.close()
}

function detail_fa(faktura, w, h){
   var myWindow = window.open(faktura, 'detail', 'fullscreen=0, scrollbars=1, toolbar=0,location=0,directories=0,status=0,menubar=0, resizable=1,copyhistory=0,width=' + w + ', height=' + h);
   myWindow.document.close()
}