// FUNKCJE
function random(maxValue)
{
day = new Date();
hour = day.getHours();
min = day.getMinutes();
sec = day.getSeconds();
return (((hour + 1) * (min + 1) * sec) % maxValue) + 1
}


// PRELOAD OBRAZKÓW
function MM_preloadImages() { 
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

MM_preloadImages("images/menu-2.gif","images/menu-3.gif","images/menu-4.gif","images/top.jpg","images/0.gif","images/a-off.gif","images/a-on.gif","images/arrow.gif","images/arrows.gif","images/back-left.gif","images/bar-bottom.gif","images/bar-title.gif","images/bar-top.gif","images/corner-lb.gif","images/li.gif","images/margin-left.gif","images/margin-right.gif","images/menu-0.gif","images/menu-1.gif");


// OKIENKO WYSKAKUJĄCE
function Okno(vURL, vNazwa, vWidth, vHeight) { 
        vWin = window.open(vURL,vNazwa,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width="+vWidth+",height="+vHeight); 
}

// OKIENKO OBRAZKA
function Obrazek(vURL, vWidth, vHeight) {

vWidth = vWidth + 40;
vHeight = vHeight + 150;

if (vWidth < 200) {
	vWidth = 200;
}

if (vHeight < 200) {
	vHeight = 200;
}

var	TXT = "<HTML><HEAD>"
		+ "<META http-equiv='Content-Type' content='text/html'; charset='iso-8859-2'>"
		+ "<LINK REL=stylesheet href='style.css' TYPE=text/css>"
		+ "<TITLE>Droimpex Pro 99 / Obrazek</TITLE>"
		+ "<SCRIPT language=JavaScript SRC='skrypty.js'></SCRIPT>"
		+ "</HEAD>"
		+ "<BODY leftMargin=10 topMargin=15 rightMargin=10 marginwidth=10 marginheight=10 style='border: 0px; background-color: #E8E8E8;'>"
		+ "<CENTER>"
		+ "<IMG id=IMG src='" + vURL + "'>"
		+ "<BR><BR>"
		+ "[&nbsp;<A href=javascript:window.close()><FONT color=green>Zamknij okno</FONT></A>&nbsp;]"
		+ "<BR><BR>"
		+ "<SMALL><FONT color=gray>Copyright &copy; 2005 - </FONT></SMALL><a style='text-decoration: none;' target=_blank href=http://www.droimpex.com.pl>"
		+ "<SMALL><FONT color=gray>Droimpex Pro 99</FONT></SMALL></a><BR>"
		+ "</CENTER></BODY></HTML>";
var	vWin = window.open("","Obrazek","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=no,resizable,copyhistory=0,left=20,top=20,width="+vWidth+",height="+vHeight);
	vWin.resizeTo(vWidth, vHeight);
	vWin.document.open();
	vWin.document.write(TXT); 
	vWin.document.close();
	vWin.focus(); 
}
