function enlarge() 
{
     document.images['space'].height = screen.availHeight;
} 

function newWnd(url,xsize,ysize)
{
  var params='fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width='+ xsize+',height='+ ysize;
	window.open(url,'',params	,'');	 	
}

function hl(where,image)
{
	document.images[where].src = image;
}
  

function showimg()
{
	var no;
	n=n+1;
	no=n%3+1;

	document.getElementById('smpl').innerHTML="<img src=img/"+imgs[no][1]+" border=0 hspace=5 vspace=5 alt="+imgs[no][2]+">";  
	document.getElementById('txt').innerHTML=imgs[no][2];  

	setTimeout('showimg()',pause);
}

function init() 
{
	enlarge();
	setTimeout('showimg()',pause);
}
