<!--

function changebg(what,color,bordcolor,image,opacity){
	what.style.backgroundColor=color;
	
if (typeof bordcolor != 'undefined') {
    if (bordcolor !== undefined){
	what.style.borderColor=bordcolor;
	}
}

if (typeof image != 'undefined') {
    if (image !== undefined){
		if (navigator.userAgent.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5)
			{image.style.MozOpacity=opacity/99.9;}
		else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4)
			{image.filters.alpha.opacity=opacity;}
		else
			{image.style.opacity=opacity/100;}
		}
	}
}

function openWindow(x,y,width,height)
{
	var win = window.open(x,y,"width="+width+",height="+height+",menubar=no,scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes,left=100,top=70,screenX=100,screenY=70");
	win.focus();
}

// -->
