var profiles =
{

    window500x400:
    {
            height:500,
            width:400,
            center:0,
            resizable:0
    },
    window300x600:
    {
            height:300,
            width:600,
            center:0,
            resizable:0
    },
    
    window500x500:
    {
            height:500,
            width:500,
            center:0,
            resizable:1,
            scrollbars: 1
    },
    window550x430:
    {
            height:430,
            width:550,
            center:0,
            resizable:1,
            scrollbars: 1
    },
    window820x450:
    {
            height:450,
            width:820,
            center:0,
            resizable:1,
            scrollbars: 1
    },
    window840x470:
    {
            height:470,
            width:840,
            center:0,
            resizable:1,
            scrollbars: 1
    },
    window1014x680:
    {
            height:680,
            width:1014,
            center:0,
            resizable:1,
            scrollbars: 1
    },
    
    windowfullscreen:
    {
            height:700,
            width:1100,
            center:0,
            resizable:0,
            scrollbars: 0
    }

};


$(function()
{
        $(".windowpop").popupwindow(profiles);
});
