function prepage() 
{ 
	document.write ("<div class=\"prepage\" id=\"prepage\"><table class=\"prepage\"><tr><td><p><img src=\"/img/flame.gif\" width=\"28\" height=\"57\"></p><p>Luktelkit ... ... Puslapis kepamas!</p></td></tr></table></div>");
		
};

prepage();
function clearPreloadPage() 
{ //DOM 
	if (document.getElementById)
			{
				document.getElementById('page').style.visibility='visible';
				document.getElementById('prepage').style.visibility='hidden';
			}
			else
			{
				if (document.layers)
					{ //NS4	
								
					    document.body.style.visibility='visible';
						document.prepage.style.visibility = 'hidden';
					}
					else 
					{ //IE4
					    document.all.body.style.visibility='visible';
						document.all.prepage.style.visibility = 'hidden';
					}
			 }
}

var bigimg = new Image ,imgpath, thumbpath, ww, hh, winw, winh;

function ShowBig(thumbpath){ 
	imgpath = thumbpath.replace(/thumb_/,'');
	bigimg.width = null;
	bigimg.height = null;
	bigimg.src = '';
	bigimg.src = imgpath;
	winw = (bigimg.width) ? (bigimg.width + 35) : 1;
	winh = (bigimg.height) ? (bigimg.height +80) : 1;
	LeftPosition = (screen.width&&bigimg.width) ? (screen.width - winw)/2 : 1500;
	TopPosition = (screen.height&&bigimg.height) ? (screen.height - winh)/2 : 1500;
	settings = 'height='+winh+',width='+winw+',top='+TopPosition+',left='+LeftPosition+',scrollbars="true",resizable';
	win = window.open('','mywin',settings);
	win.document.write('<html><head><title></title><script language=\"JavaSc'+'ript\">function whenLoaded(ww,hh){resizeTo(ww, hh);moveTo((screen.width-ww)/2,(screen.height-hh)/2);}</scr'+'ipt></head><body leftmargin=\"10\" topmargin=\"10\" marginheight=\"10\" marginwidth=\"10\" bgcolor=\"gray\"><img align=\"center\" name=\"paveiksliukas\" src=\"'+imgpath+'\" onload=\"javascript:if(document.paveiksliukas.width&document.paveiksliukas.height){ww=document.paveiksliukas.width+35;hh=document.paveiksliukas.height+80;}else{ww=800;hh=600;};whenLoaded(ww,hh)\"></body></html>');	
}