function drawCloseButton (divName) {
	var str =
	'<div class="closeButton">' +
	'<a href="javascript:void(0)" ' +
	'onclick="popup(' + "'" + divName + "','close'" + ');return false"><img src="/img/closeButtonBig.png" width="164" height="46" border="0" alt="Close Window" /></a>' +
	'</div>';
	//alert (str);
	document.write(str);
}

