<!--
// This JavaScript is (c) Dooman Productions Pty. Ltd. 2003
// **== Magpies Rule ==**

var emailAddr = 'info@magnor.com.au';

// FUNCTION drawFooter
//--------------------
//
function drawFooter(){

var wstr = '';

wstr += '<table width=\"100%\" border=\"0\" cellspacing=\"0\">';
wstr += '<tr><td colspan=\"2\"><img src=\"../images\/dot.gif\" height=\"1\" width=\"100%\" alt=\"\" /><\/td><\/tr>';
wstr += '<tr><td>';
wstr += '  <table columns=\"3\" border=\"0\">';
wstr += '  <tr valign=\"top\">';
wstr += '    <td class=\"smll\">239 Magill Road<br />Maylands<br />South Australia 5069<br />Australia<\/td>';
wstr += '    <td class=\"sml\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<\/td>';
wstr += '    <td class=\"smll\">Tel:&nbsp;&nbsp;+618 8366 6540<br />Fax:&nbsp;+618 8366 6501<br />E-mail: <a ';
wstr += '     class=\"a3\" href=\"mailto:'+emailAddr+'\">'+emailAddr+'<\/a><\/td>';
wstr += '  <\/tr>';
wstr += '  <\/table><\/td>';
wstr += '<td align=\"right\">'+createLinkHome()+'<\/td>';
wstr += '<\/tr><\/table>';

document.write(wstr);

} // end of function drawFooter


// FUNCTION createLinkHome
//------------------------
//
function createLinkHome(){

var wstr = "";

wstr += '<a href=\"index.html\">';
wstr += '<img src=\"../images/magnorlogo.jpg\" width=\"128\" height=\"54\" border=\"0\" ';
wstr += " onMouseover=\"window.status='Return to our home page'; return true\" ";
wstr += " onMouseout=\"window.status=''\"><\/a>";

return wstr;

}  // end of function createLinkHome


// FUNCTION createTextLinkHome
//----------------------------
//
function createTextLinkHome(){

var wstr = "";

wstr += '<a class=\"a1\" href=\"index.html\"';
wstr += " onMouseover=\"window.status='Return to our home page'; return true\" ";
wstr += " onMouseout=\"window.status=''\">Return to our home page<\/a>";

return wstr;

}  // end of function createTextLinkHome


// FUNCTION drawProductFlag
//-------------------------
//
function drawProductFlag(pmCountry){

var wstr = '';
var countryFlag = '';
var countryText = '';

switch(pmCountry){

   case '':
      countryFlag = '../images/flagaus_small.jpg';
      countryText = 'Australian Products';
      break;

   case 'AUS':
      countryFlag = '../images/flagaus_small.jpg';
      countryText = 'Australian Products';
      break;

   case 'USA':
      countryFlag = '../images/flagusa_small.jpg';
      countryText = 'US Products';

      break;

};

wstr += '<img src=\"'+countryFlag+'\" alt=\"\" />&nbsp;'+countryText;

document.write(wstr);

}  // end of function drawProductFlag



// FUNCTION drawDisplayStand
//--------------------------
//
function drawDisplayStand(){

var wstr = '';

wstr += '<table width=\"100%\" borde
