﻿/*
 * JScript-Datei für MasterPage1.master
 */

// <![CDATA[  

    document.onmousedown = Mousing;

    //----------------------------------------------------------------
    //----------------------------------------------------------------
    function openPrintPreview() {
        window.open("checkout_printPreview.aspx", "pop", "width=750, height=500, left=0, top=0, menubar=yes, scrollbars=yes, locationbar=no, personalbar=no, statusbar=no, toolbar=no");            
    }

    
    //----------------------------------------------------------------
    //----------------------------------------------------------------
    function Mousing (result) {
        if (!result) {
            result = window.event;
        }
        if (result.button) {
            if (result.button == 2) {
                var d = new Date();
                alert("© " + d.getFullYear() + " LIFE ELEMENT ® - All rights reserved");
            }
        }
    }    
    
// ]]>

