﻿function GetJargonBuster() {
    my_window = window.open("Jargon Buster",
                          "JargonBuster", "status=1,scrollbars=1,width=600,height=500");
    my_window.moveTo(0, 0);

    my_window.document.write('<html>');
    my_window.document.write('<head>');
    my_window.document.write('<title>Jargon Buster</title>');
    my_window.document.write('<link href="../styles/digiStyles.css" rel="stylesheet" type="text/css" />');
    my_window.document.write('</head><body>');

    my_window.document.write('<div id="contentBox">');
 
    
    my_window.document.write('</span></div>');

    my_window.document.write('</body></html>');

}


function GetLowPricesData()
        {
            my_window= window.open ("Why Our Prices are Low",
              "WhyOurPricesLow", "status=1,width=600,height=500");
            my_window.moveTo(0, 0);
            
            my_window.document.write('<html>');
            my_window.document.write('<head>');
            my_window.document.write('<title>Why our prices are low</title>');
            my_window.document.write('<link href="../styles/digiStyles.css" rel="stylesheet" type="text/css" />');
            my_window.document.write('</head><body>');
            
            my_window.document.write('<div id="contentBox">');
            my_window.document.write('<h1>Why are our prices so low?</h1>');
            my_window.document.write('<span  style="text-align:justify">');
            my_window.document.write('<p>As good as new factory refurbished products are one of the great bargains of the electrical market. </p>');
            my_window.document.write('<p>Everyday thousands of products are returned to manufacturers because the customer has changed their mind, the box is damaged or there is a minor fault.</p>');
            my_window.document.write('<p>Reputable manufacturers refurbish these items to an AS GOOD AS NEW CONDITION and sell them at low prices giving savvy buyers like you the opportunity to bag a bargain.</p>');
            my_window.document.write('<p>Unless stated otherwise the products we offer are refurbished, normally in the original manufacturer’s own factory.	Digiland products are sold with the standard accessories, operating instructions (or they can be easily downloaded) and in a fully functioning condition. Occasionally there may be a minor cosmetic imperfection. We offer a full 12 month warranty on most TVs (other products vary) so you can buy with complete confidence!</p>');
            my_window.document.write('</span></div>');
            my_window.document.write('</body></html>');
        }
