// JavaScript Document

function drawSpeechBubble (bubbleQuote, bubbleSource, bubbleLink) {
	document.write('<br><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>');
	document.write('<td width="1"><img src="../images/speechBubble_tl.gif"></td>');
	document.write('<td width="1" background="../images/speechBubble_t.gif"></td>');
	document.write('<td background="../images/speechBubble_t.gif"></td>');
	document.write('<td width="1"><img src="../images/speechBubble_tr.gif"></td>');
	document.write('</tr><tr><td width="1" background="../images/speechBubble_l.gif"></td>');
	document.write('<td colspan="2" valign="middle" align="left" bgcolor="#fafafa">');
	document.write(bubbleQuote);
	document.write('</td><td width="1" background="../images/speechBubble_r.gif"></td>');
	document.write('</tr><tr><td width="1" valign="top" align="left" rowspan="2">');
	document.write('<img src="../images/speechBubble_bl.gif"></td><td width="1" valign="top" align="left" rowspan="2">');
	document.write('<img src="../images/speechBubble_tip.gif"></td><td background="../images/speechBubble_b.gif"></td>');
	document.write('<td><img src="../images/speechBubble_br.gif"></td></tr><tr>');
	document.write('<td valign="middle" align="left" width="100%">');
				   
	if (bubbleLink != "null") {		   
		
	document.write('<A href="');
	document.write(bubbleLink);
	document.write('" target="_blank">');
	document.write(bubbleSource);
	document.write('</A>');

	} else {

	document.write(bubbleSource);

	}
				   
	document.write('</td><td></td></tr></table>');

}

function drawFooter (footerText) {
	
	document.write('<HR size="1" color="cccccc" noshade="yes"><P>&nbsp;</P>');
	document.write('<DIV align="center"><H1>WE&nbsp;NEVER&nbsp;FAIL <FONT color="FF6600">');
	document.write('&amp;&nbsp;NEITHER&nbsp;WILL&nbsp;YOU.</FONT></H1><p>');
	
	if (footerText != undefined) {
		
		document.write(footerText);
		
	} else {

		document.write('For more information on how SQL Power Software can ');
		document.write('reduce cost, improve productivity and help you make better-informed business decisions, ');
		document.write('contact us today at <A href= "mailto:support@sqlpower.ca">support@sqlpower.ca</A> ');
		document.write('or <B>1&#8209;866&#8209;SQL&#8209;POWR.</B>');
		
	}

	document.write('</p><p>&nbsp;</p></DIV>');
	
}













