var statusSH = new Array();
for(var x=0; x<5; x++)
	statusSH[x]=1;

	function show(id,img,i)
	{
		if(statusSH[i]==1)
		{	
			if (document.getElementById) 
				{ 	// DOM3 = IE5, NS6
					document.getElementById(id).style.display = 'block';
					document.getElementById(img).src = "img/less-info.gif";
				}
			else 
				{
					if (document.layers) 
					{ // Netscape 4
						document.id.display = 'block';
						document.img.display = 'none';
					}
					else 
					{ // IE 4
						document.all.id.style.display = 'block';
						document.all.img.style.display = 'none';
					}
				}
			
		}
		if(statusSH[i]==0)
		{	
			if (document.getElementById) 
				{ 	// DOM3 = IE5, NS6
					document.getElementById(id).style.display = 'none';
					document.getElementById(img).src = "img/more-info.gif";
				}
			else 
				{
					if (document.layers) 
					{ // Netscape 4
						document.id.display = 'none';
						document.img.src = 'img/more-info.gif';
					}
					else 
					{ // IE 4
						document.all.id.style.display = 'none';
						document.all.img.src = 'img/more-info.gif';
					}
				}
		
		}	
		
		if(statusSH[i]==0) statusSH[i]=1;
		else statusSH[i]=0;
		
	}	
	
	
var newwindow; 
var aux=newwindow;

function PopWindow(url,name,arguments)
{
	newwindow = window.open(url,name,arguments);
	
	if (window.focus) 
		newwindow.focus();
}
