﻿/// <reference path="UI/JS/Hyz/hyz.core.js" />
/// <reference path="UI/JS/JQuery/jquery-1.3.2-vsdoc.js" />

$(document).ready(function() {
    $(".createAnAdvergame").click(function() {
        var popup = new hyz.popup("islandMasterRegistrationPopup", "/DialogIFrames/IslandMasterRegistrationForm2.aspx", {
            getWidth: function() { return 480; }, getHeight: function() { return 560; }
        });
        popup.open();
    });

    $(".createACampaign").click(function() {
        var popup = new hyz.popup("promoterRegisrationPopup", "/DialogIFrames/PromoterRegistrationForm.aspx", {
            getWidth: function() { return 450; }, getHeight: function() { return 580; }
        });
        popup.open();
    });

    $(".createAnAdAgency").click(function() {
        var popup = new hyz.popup("adAgencyRegisrationPopup", "/DialogIFrames/AdAgencyRegistrationForm.aspx", {
            getWidth: function() { return 440; }, getHeight: function() { return 510; }
        });
        popup.open();
    });
});
