jQuery.noConflict();
(function($) {

    $.GuidePop = function(title, box_width, box_height, email_headline, contentType) {
        if ($.browser.msie) {
            var sHeight = document.body.scrollTop;
        // Non-IE
        } else {
            var sHeight = window.pageYOffset;
        }

        EMAIL_HEADLINE = email_headline;

		var sTop = sHeight - (box_height / 2) + 245 + 'px';
        var modWinHeight = box_height + 47 + 'px';
        var IG_Content = $('#' + title).html();
        var guideWindow = "<div id='modelWin' style='width: "+ box_width +"px; height: "+ modWinHeight +"; top: "+ sTop +";'><div class='close_bar'><div id='close'>Close</div></div><div class='pop_content'>" + IG_Content + "<div class='shareContent'></div></div></div>";
        $('#GuidePop').append(guideWindow);
        $('#modelWin').show();    
        var shareHTML = contentType == "guide" ? $('#InteractiveShareSetup').html() : $('#VideoShareSetup').html();  
        $('.shareContent').append(shareHTML);
        $('#close').click(function(event) {
            $('#modelWin').remove();
        });
    };

}) (jQuery);