/*
 * jQuery PopUpWindow Init - PVMA
 *
 * Copyright (c) 2009 Peps (jlrworks.com)
 *
 */
$(document).ready(function(){
	var profiles =
	{
		popup_pres:
		{
			center: 1,
			height: 500,
			scrollbars: 1,
			width: 500
		},
		popup_laws:
		{
			center: 1,
			height: 500,
			scrollbars: 1,
			width: 800
		},
		popup_conv:
		{
			center: 1,
			height: 768,
			scrollbars: 1,
			width: 1024
		}
	};

	$('a.popup').popupwindow(profiles);
});
