var profiles = {
	window800: {
		height:800,
		width:800,
		status:1,
		scrollbars:1,
		toolbar:1,
		location:1,
		menubar:1
	},
	windowCenter: {
		height:800,
		width:893,
		center:1,
		status:1,
		scrollbars:1,
		toolbar:1,
		location:1,
		menubar:1
	}
};
$(document).ready(function() {
	$(function() {
		$(".popupwindow").popupwindow(profiles);
	});
});

