function getImage(url, width, height) {
	if ((navigator.appName.indexOf('Explorer') != -1) && (navigator.appVersion.indexOf('MSIE 6') != -1))
		document.write('<div style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + url + '\');width:' + width + 'px;height:' + height + 'px);"></div>');
	else
		document.write('<img src="' + url + '" width="' + width + '" height="' + height + '" border="0" alt="" />');
}