$(document).ready(function(){
	var popuptext = "<div><a href=\"http://www.jamestown.org/programs/mlm0/\"><img alt=\"\" height=\"73\" width=\"527\" src=\"fileadmin/JamestownContent/New_Pub_Headers/MLMheader2.jpg\" style=\"vertical-align: text-bottom;\" /></a><br style=\"clear:both;\" /><p>Militant Leadership Monitor (MLM) is a unique source of information covering the leading personalities behind the world’s major insurgent and militant movements. The MLM is the Jamestown Foundation’s first ever subscription based publication. Subscribers will receive access to both the monthly newsletter and the Foundation’s rich archive of articles as part of their annual subscription. For more information please <a href=\"http://www.jamestown.org/programs/mlm0/\">CLICK HERE</a>.</p></div>";
	var popup = $(popuptext);
	popup.dialog({
		autoOpen : false,
		draggable : false,
		resizable : false,
		width : 580,
		height : 420,
		modal: true,
		title: "Militant Leadership Monitor",
		overlay : {
			opacity: 0.5,
			background: 'black'
		},
		buttons : {
			'close' : function() {$(this).dialog('destroy')}
		}
	});
	var popupre = /\bpopupshown=1\b/;
	var popupshown = popupre.test(document.cookie);
	if (!popupshown) {
		var expire = new Date();
		expire.setTime(expire.getTime()+(86400 * 1000));
		document.cookie = "popupshown=1; expires=" + expire.toUTCString() + "; path=/";
		popup.dialog('open');
	} else {
		popup.dialog('destroy');
	}
});

