﻿function showFullSize(ime,visina,sirina){
	openPictureWindow(ime, visina, sirina);
}
function ShowImg(imageName,imageWidth,imageHeight)
{
    var window_top = (screen.height-imageHeight)/2;
    var window_left = (screen.width-imageWidth)/2;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+',top='+window_top+',left='+ window_left);
	newWindow.document.open();
	newWindow.document.write('<HTML><HEAD><TITLE>Slika</TITLE></HEAD><BODY BGCOLOR="#FFFFFF" TEXT="#000000" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 onBlur="self.close()" onClick="self.close()">');
	newWindow.document.write('<IMG SRC="images/'+imageName+'">');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}

function ShowImg1(imageName,imageHeight,imageWidth)
{
    var window_top = (screen.height-imageHeight)/2;
    var window_left = (screen.width-imageWidth)/2;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+',top='+window_top+',left='+ window_left);
	newWindow.document.open();
	newWindow.document.write('<HTML><HEAD><TITLE>Slika</TITLE></HEAD><BODY BGCOLOR="#FFFFFF" TEXT="#000000" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 onBlur="self.close()" onClick="self.close()">');
	newWindow.document.write('<IMG SRC="'+imageName+'">');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}

function ShowPage(PageName,imageWidth,imageHeight)
{
    var window_top = (screen.height-imageHeight)/2;
    var window_left = (screen.width-imageWidth)/2;
	newWindow = window.open(PageName,"newWindow","width="+imageWidth+",height="+imageHeight+',top='+window_top+',left='+ window_left);
}

// end dHTML SlideShow Script

