// JavaScript Document

var profiles =
{

	window800:
	{
		height:600,
		width:700,
		status:1,
		center:1,
		createnew:0,
		scrollbars:1

	},

	window400:
	{
		height:600,
		width:400,
		status:1,
		createnew:1,
		center:1,
		scrollbars:1


	},

	windowCenter:
	{
		height:300,
		width:400,
		center:1
	},
	
	windowNotNew:
	{
		height:300,
		width:400,
		center:1,
		createnew:0
	}

};


$(function()
{
	$(".popupwindow").popupwindow(profiles);
});

