﻿/* document.oncontextmenu = new function( "return false" ); */

function disclaimerpopup()
{
    var message = 'DISCLAIMER:\nGreen Roofs Naturally makes every effort to ';
    message += 'ensure that information contained in these pages is accurate. ';
    message += 'However, no liability is accepted arising from reliance upon ';
    message += 'information contained in these pages or any other information ';
    message += 'accessed via this site.\n'
    message += 'Whilst Green Roofs Naturally endeavours to ensure that this site ';
    message += 'is normally available 24 hours a day, Green Roofs Naturally or its ';
    message += 'contractors will not be liable if for any reason the site is '; 
    message += 'unavailable at any time or for any period. Access to this site may ';
    message += 'be suspended temporarily or permanently and without notice.';
    alert(message);
}

function copyrightpopup()
{
    debugger;
    var bob = new openpopup(this);
    bob.innerHTML= 'hello';
    bob.show();
    //var message = 'COPYRIGHT:\n';
    //message += '';
    //alert(message);
}

function show_popup(type)
{
    var messageHtml;
    if (type === 'copyright')
    {
        messageHtml = '<table border="0" cellpadding="10"><tr><td>COPYRIGHT NOTICE:</td></tr>';
        messageHtml += '<tr><td>All rights, including copyright, in the content of these Green Roofs Naturally ';
        messageHtml += 'web pages are owned or controlled for these purposes by Green Roofs Naturally.';
        messageHtml += '</td></tr><tr><td>';
        messageHtml += 'In accessing Green Roofs Naturallys web pages, you agree that you may ';
        messageHtml += 'only download the content for your own personal non-commercial use.';
        messageHtml += '</td></tr><tr><td>'; 
        messageHtml += 'You are not permitted to copy, broadcast, download, store (in any medium), ';
        messageHtml += 'transmit, show or play in public, adapt or change in any way the content of ';
        messageHtml += 'these Green Roofs Naturally web pages for any other purpose whatsoever without the prior ';
        messageHtml += 'written permission of Green Roofs Naturally.';
        messageHtml += '</td></tr></table>';
    }
    else if (type === 'disclaimer')
    {
        messageHtml = '<table border="0" cellpadding="10"><tr><td>DISCLAIMER:</td></tr>';
        messageHtml += '<tr><td>Green Roofs Naturally makes every effort to ';
        messageHtml += 'ensure that information contained in these pages is accurate. ';
        messageHtml += 'However, no liability is accepted arising from reliance upon ';
        messageHtml += 'information contained in these pages or any other information ';
        messageHtml += 'accessed via this site.</td></tr>'
        messageHtml += '<tr><td>Whilst Green Roofs Naturally endeavours to ensure that this site ';
        messageHtml += 'is normally available 24 hours a day, Green Roofs Naturally or its ';
        messageHtml += 'contractors will not be liable if for any reason the site is '; 
        messageHtml += 'unavailable at any time or for any period. Access to this site may ';
        messageHtml += 'be suspended temporarily or permanently and without notice.</td></tr></table>';
    }

    var p=window.createPopup();
    var pbody=p.document.body;
    pbody.style.backgroundColor="#b6cb8c";
    pbody.style.border="solid black 2px";
    pbody.innerHTML=messageHtml;
    p.show(350,100,300,400,document.body);
}
