
	
	function drawButton(buttonText, buttonURL, buttonTarget, colorBackground, colorBorder, colorShadow) {
		var buttonHtml = "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorShadow+"\" style=\"position:relative;left:3;top:3\"><tr><td><table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorBorder+"\" style=\"position:relative;left:-3;top:-3\"><tr><td><table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorBackground+"\"><tr><td>&nbsp;<a href=\""+buttonURL+"\" target=\""+buttonTarget+"\">"+buttonText+"</a>&nbsp;</td></tr></table></td></tr></table></td></tr></table>";
		document.write(buttonHtml);
	}
	
	function drawBox(boxText, colorBackground, colorBorder, colorShadow) {
			var buttonHtml = "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorShadow+"\" style=\"position:relative;left:3;top:3\"><tr><td><table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorBorder+"\" style=\"position:relative;left:-3;top:-3\"><tr><td><table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" bgcolor=\"#"+colorBackground+"\"><tr><td>&nbsp;"+boxText+"&nbsp;</td></tr></table></td></tr></table></td></tr></table>";
			document.write(buttonHtml);
	}