// JavaScript Document

var profiles =
{
	popup_page:
	{
		height:800,
		width:550,
		center:1,
		scrollbars:1,
		createnew:0
	},

	popup_inserts:
	{
		height:800,
		width:568,
		center:1,
		scrollbars:1,
		createnew:0
	}

};


$(function()
{
	$(".popup").popupwindow(profiles);
	$(".popup").attr({ title: 'Opens in a new window' });
});

