function cImg1() {
    return '<table class="tableShade" cellspacing="0" cellpadding="0" border="0"><tr><td class="middleLeft"><img src="/www/_img/common/shadeCornerLeftTop.gif"  alt="" /></td><td class="content">';
}


function cImg2() {
    return '</td><td class="middleRight"><img src="/www/_img/common/shadeCornerRightTop.gif"  alt="" /></td></tr><tr><td colspan="2" class="bottomLeft"><img src="/www/_img/common/shadeCornerLeftBottom.gif" alt=""  /></td><td class="bottomRight"><img src="/www/_img/common/shadeCornerRightBottom.gif" alt=""  /></td></tr></table>';
}


function showCornImage(imageFileName, imagesFolder, prefix, imageWidth, imageHeight, href){
	
	
	//tableCode = cImg1();

	tableCode = getImgText(imageFileName, imagesFolder, imageWidth, imageHeight, href);

	//tableCode += cImg2();

    document.write(tableCode);
}

function getImgText(imageFileName, imagesFolder, imageWidth, imageHeight, href){
	var imgText='';
	if (href) imgText += '<a href="'+href+'">';
    imgText += "<img border=0 class=\"image\" src=\""+imagesFolder+"/" + imageFileName + "\"";
	if (imageWidth)	imgText += " width=\""+imageWidth+"\"";
	if (imageHeight) imgText += " height=\""+imageHeight+"\"";
	imgText += ">";
	if (href) imgText += '</a>';
	return imgText; 
}


