﻿
$(document).ready(function() {

    //dialog response.
	$(function() {
		$("#divhpstore").dialog({
			bgiframe: true,
			autoOpen: false,
			width: 770,
			height: 630,
			title: "Souplantation"
		});
	});		
	
	//Promo on main page
    $("#ctl00_Body_hplStore").click(function(event){ 
        
        try
        {
	    var imageurl = document.getElementById("ctl00_Body_hplStorePopup").childNodes[0].src; //$("#ctl00_Body_hplStore").attr("src");

            if (imageurl == null)
                return false;
        
            event.preventDefault();
            //$("#divhpstore").dialog('option', 'buttons', { imageurl: function() { $(this).dialog("close"); } });
            $("#divhpstore").dialog("open");
            return false; 
            
        }
        catch (err)
        {
        }

        });         	
    });
    
    
