function openwint(link,target)
{
window.open(link,target);
}
function openwin(link)
{
window.open(link,"_self");
}
function openpopup(file,where,top,left,width,height)
{
window.open(file,"xxxxxxxxxx","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, title=no, width="+width+", height="+height+", top="+top+", left="+left);
}
function openpop(file,where,top,left,width,height)
{
window.open(file,"xxxxxxxxxx","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, title=no, width="+width+", height="+height+", top="+top+", left="+left);

}
function fotozi( pFileName, pTitle, pCaption) {
	photoWin = window.open( "", "photo", "width=190 height=130 ,status=no,scrollbars=no,resizable=yes,screenX=5,screenY=5,left=100,top=100");
	photoWin.document.write('<html><head><title>Poza marita</title><link href="../css/main.css" rel="stylesheet" type="text/css"></head>');	
	photoWin.document.write('<BODY leftmargin="0" topmargin="0" bgcolor="black"> <center>');
	photoWin.document.write('<img src="' + pFileName + '"border=0  onclick="window.close()" class="img" alt="click to close the window" <br><p>');
    photoWin.focus();
	photoWin.document.write('</center></font></body></html>');
	photoWin.document.close();	

}

