﻿
    jQuery.noConflict();
    //Load Popup
    function loadPopup() {
        jQuery("#popupBg").css({ opacity: "0.7" });
        jQuery("#popupBg").fadeIn("slow");
        jQuery("#popupPrestitial").fadeIn("slow");
    }
    //Center Popup
    function centerPopup() {
        var windowWidth = document.documentElement.clientWidth;
        var windowHeight = document.documentElement.clientHeight;
        var prestitialHeight = jQuery("#popupPrestitial").height();
        var prestitialWidth = jQuery("#popupPrestitial").width();
        //center it!
        jQuery("#popupPrestitial").css({
            position : "absolute",
            top : "150px", 
            left : "100px"
        });
        //Jquery hack for IE6 WindowHeight
       jQuery("#popupBg").css({ height : windowHeight });
       jQuery("#popupBg").css({ width : windowWidth });
    }
    function closePopup()
    {
        jQuery("#popupBg").hide();
        jQuery("#popupPrestitial").hide();
    }
    