function chkImg(varImage,height,width){
	var bA  = navigator.appName;
	if(bA == "Microsoft Internet Explorer"){
		document.write("<div style=\"height:"+height+"px;width:"+width+"px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+varImage+"')\"></div>")
	}else{
		document.write("<img src=\""+varImage+"\" width="+width+" height="+height+" border=\"0\">");
	}
}