function setOpacity(obj, opacity) {
	opacity = (opacity==100)?99.999:opacity;

	// IE/Win
	obj.style.filter = "alpha(opacity:"+opacity+")";

	// Safari<1.2, Konqueror
	obj.style.KHTMLOpacity = opacity/100;

	// Older Mozilla and Firefox
	obj.style.MozOpacity = opacity/100;

	// Safari 1.2, newer Firefox and Mozilla, CSS3
	obj.style.opacity = opacity/100;
}

function openWindow(vC,vD,vE,vF) {
	window['vW'] = window.open('','imagePopup','width=1,height=1,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0');
	window['vW'].close();
	window['vW'] = window.open('','imagePopup','width='+vE+',height='+vF+',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0');
	window['vW'].document.write('<html><head><title>'+vD+'</title></head><body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" valign="middle"><a href="javascript:window.close();"><img src="'+vC+'" width="'+vE+'" height="'+vF+'" border="0"></a></td></tr></table></body></html>');
	window['vW'].document.title = vD;
	window['vW'].focus();
}
