function guidelineImage(imgAlt, imgSrc, imgWidth, imgHeight) {
	document.write("<div class='guidelineImageBounder'>");
	document.write("<img class='guidelineImage' alt='" + imgAlt + "' src='" + imgSrc + "' width='" + imgWidth + "' height='" + imgHeight + "'>");
	document.write("</div>");
	document.write("<div style='height:" + imgHeight + ";'>&nbsp;</div>");
	document.write("<div style='margin-bottom:20px;'>&nbsp;</div>");
}
function guidelineImageTight(imgAlt, imgSrc, imgWidth, imgHeight) {
	document.write("<div class='guidelineImageBounder'>");
	document.write("<img class='guidelineImage' alt='" + imgAlt + "' src='" + imgSrc + "' width='" + imgWidth + "' height='" + imgHeight + "'>");
	document.write("</div>");
	document.write("<div style='height:" + imgHeight + ";'>&nbsp;</div>");
}
