function cImg1() {
    return '<table class="tableShade" cellspacing="0" cellpadding="0" border="0"><tr><td class="picture">';
}


function cImg2() {
    return '</td><td class="shadeBgRight"><img src="/www/_img/common/shadeRightTop.gif"  alt="" /></td></tr><tr><td class="shadeBgBottom"><img src="/www/_img/common/shadeLeftBottom.gif" alt=""  /></td><td><img src="/www/_img/common/shadeRightBottom.gif" alt=""  /></td></tr></table>';
}

function showCornImageGal(imageName, prefix, imageWidth, imageHeight, href, title){
	tableCode = cImg1();
	tableCode += getImgText(imageName, imageWidth, imageHeight, href, title);

	tableCode += cImg2();

    document.write(tableCode);
}
  
function getImgText(imageName, imageWidth, imageHeight, href, title){
	var imgText='';
	if (href) imgText += '<a href="'+href+'">';
    imgText += "<img border=0 class=\"image\" src=\""+ imageName + "\"";
	if (imageWidth)	imgText += " width=\""+imageWidth+"\"";
	if (imageHeight) imgText += " height=\""+imageHeight+"\"";
	if (title) imgText += " alt=\""+title+"\"";
	imgText += ">";
	if (href) imgText += '</a>';
	
	return imgText; 
}