// JavaScript Document

function write_MBFbanner(){
document.write("      <tr>");
document.write("        <td><div align=\"center\"><img src=\"images\/quick_links_elements\/quicklinks_cap.gif\" alt=\"\"><\/div><\/td>");
document.write("      <\/tr>");
document.write("      <tr>");
document.write("        <td class=\"ql_body\" height=\"8\"><div align=\"center\"><a href=\"member\/memberinformation_mbf_version.htm\"><img src=\"images\/banners\/MBF_side.gif\" alt=\"Special Member Discounts with MBF\" border=\"0\" height=\"143\"><\/a><br>");
document.write("");
document.write("        <\/div><\/td>");
document.write("      <\/tr>");
document.write("      <tr>");
document.write("        <td height=\"8\"><div align=\"center\"><img src=\"images\/quick_links_elements\/quicklinks_base.gif\" alt=\"\"><\/div><\/td>");
document.write("      <\/tr>");
}

function write_OUTLOOKbanner(){
document.write("      <tr>");
document.write("        <td><div align=\"center\"><img src=\"images\/quick_links_elements\/quicklinks_cap.gif\" alt=\"\"><\/div><\/td>");
document.write("      <\/tr>");
document.write("      <tr>");
document.write("        <td class=\"ql_body\" height=\"8\"><div align=\"center\"><a href=\"member\/memberinformation_outlook_health_check.htm\"><img src=\"images\/banners\/SuperHealthCheck.gif\" alt=\"Book in for your check-up now.\" border=\"0\" height=\"180\" width=\"134\"><\/a><br>");
document.write("");
document.write("        <\/div><\/td>");
document.write("      <\/tr>");
document.write("      <tr>");
document.write("        <td height=\"8\"><div align=\"center\"><img src=\"images\/quick_links_elements\/quicklinks_base.gif\" alt=\"\"><\/div><\/td>");
document.write("      <\/tr>");
}

function choosebanner(){
var now=new Date();
var number = now.getSeconds()%2;
switch (number) {
	case 0: write_OUTLOOKbanner(); break;
	case 1: write_MBFbanner(); break;
	default: result = 'unknown';
	}
}

/*now place this function call at whatever point
it needs to write the markup on to the page: -->

<script type="text/javascript">
writeHTMLasJS();
</script>*/