function writeCopyright (Msg)
{
	today=new Date();
	currYear=today.getYear();
	
	if (currYear<1900) currYear+=1900;
	
	document.write ("&copy; "+currYear+Msg);

}


document.write ("<span class=\"copyright\"><a href=\"http://www.nastrankach.cz\">");
writeCopyright (" by jkd");
document.write ('</a></span>');

/*
	PICTWINDOW function
*/
function PictWindow(fullImgURL,ImgWidth,ImgHeight,title)
{

if (title=="") title="Image Gallery"

if (ImgHeight ==0)
{
	ImgHeight =480;
}

okno=window.open("","","width="+(ImgWidth+10)+",height="+(ImgHeight+10));

imgUrl=fullImgURL;

//okno.document.open();
okno.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE><meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1250\"><link rel=\"stylesheet\" href=\"../scripts/website.css\" type=\"text/css\"></HEAD><BODY leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><CENTER>");
okno.document.write("<A HREF=\"JavaScript: window.close();\"><IMG SRC='"+imgUrl+"' BORDER=1 vspace=3 hspace=3 width="+ImgWidth+" height="+ImgHeight+">");
okno.document.write("<!-- BR>zavøít okno / close window --></A>");
okno.document.write("</CENTER></BODY></HTML>");
//okno.document.close();
}

