function toggle_visibility_image(div_id,image)
{
  var e = document.getElementById(div_id);
  e.innerHTML = "";
  e.innerHTML = '<img src="'+image+'" border ="0" width="435px" height="300px" style="padding:11px 10px 10px 11px" align="middle">';
  /*if(e.style.display == 'block')
          e.style.display = 'none';
       else*/
          e.style.display = 'block';
  
}
function hide(div_id)
{
  var e = document.getElementById(div_id);
  e.innerHTML = "";
  var main_content = "<table class='policy' cellpadding='0' cellspacing='0'>";
      main_content+= "<tr>";
      main_content+= "<td>";
      main_content+= "<span class='policytitle'>PRIVACY POLICY &amp; COPYRIGHT</span>";
      main_content+=                  "<br /><br /><br />";
      main_content+= "Our privacy policy demonstrates our firm commitment";
      main_content+= "to your privacy and the protection of your information.<br /><br />";                        
      main_content+= "Martin Place Bar (MPB) is a registered business";
      main_content+= "name owned by Gorwyn Holdings Pty Limited (ABN";
      main_content+= "39 187 220 268) Gorwyn Holdings Pty Limited owns";
      main_content+= "mpb.net.au and martinplacebar.com.au domain";
      main_content+= "names.<br /><br />";
                        
      main_content+= "MPB collects and stores relevant information provided";
      main_content+= "to us by our customers which we use for marketing";
      main_content+= "purposes and to conduct internal business analysis";
      main_content+= "about the demographics and purchasing habits of";
      main_content+= "our customer base. Relevant information for these";
      main_content+= "purposes is limited to name, address and contact";
      main_content+= "details.<br /><br />";
                        
      main_content+= "Except in relation to customers who expressly request";
      main_content+= "us to open a credit account for their convenience,";
      main_content+= "MPB does not store any information relating to";
      main_content+= "customers' bank account or credit card details.<br /><br />";
                        
      main_content+= "Customers who have any questions about MPB's";
      main_content+= "privacy policy or who wish to access their personal";
      main_content+= "information should contact the General Manager,";
      main_content+= "Martin Place Bar.";
      main_content+= "</td>";
      main_content+= "<td>";
      main_content+= "<br /><br /><br />";
       main_content+=                 "Other aspects of MPB's privacy policy";
       main_content+=                 "are that we will:<br />";

                        
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />comply with the law and be fair in the way we collect";
      main_content+=                  "information about individuals.<!--//<br/><span class='smallspace' >&nbsp;</span>--><br />";
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />only use or disclose information about individuals in";
      main_content+=                  "ways that are consistent with their expectations or are";
      main_content+=                  "required in the public interest.<br />";
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />take reasonable steps to make sure that the";
      main_content+=                  "personal information we collect, use and disclose is";
      main_content+=                  "accurate, complete and up to date.<br />";
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />keep information about individuals secure.<br />";
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />destroy or de-identify information about individuals";
      main_content+=                  "when it is no longer needed.<br />";
      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />be open with individuals about what kind of personal";
      main_content+=                  "information we hold and what we do with it.<br />";

      main_content+=                  "<img class='box' src='../images/box.gif' alt='box' />wherever possible, let individuals see the";
      main_content+=                  "information we hold about them and correct it if it is";
      main_content+=                  "wrong.<br />";
                       
      main_content+=                  "This privacy policy was created May 2009<br /><br />";
      main_content+=                  "&copy; Martin Place Bar (MPB) 2009. Copyright Notice:";
      main_content+=                  "The text, images and all data ('the content') of Martin"
      main_content+=                  "Place Bar (MPB) website are copyright. Copyright in";
      main_content+=                  "the content of the website remains with the Martin";
      main_content+=                  "Place Bar (MPB) and other copyright owners.";
      main_content+=                  "</td></tr></table>";
 
  e.innerHTML = main_content;
  e.style.display = 'none';			
  
}
