function show(p)
{
	document.getElementById(p).style.opacity = 1;
	document.getElementById(p).style.filter = 'alpha(opacity=100)';
}
function hide(p)
{
	var f;
	f = document.getElementById(p).style.opacity;
	if(f>.05) 
	{
		f=f-.02;
		document.getElementById(p).style.opacity = f;
		document.getElementById(p).style.filter = 'alpha(opacity='+(100*f)+')';
		doit = "hide('" + p + "')";
		setTimeout(doit, 10);
	}
}
function initial()
{
	for(x=1;x<10;x++)
	{
		p = "icon" + x;
		document.getElementById(p).style.opacity=.05;
		document.getElementById(p).style.filter = 'alpha(opacity=5)';
	}
}
function poppicture(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
