$(document).ready(function() { 
	var popupWindow;
	// generate popups for global nav items
	$("a[rel=popup], area[rel=popup]").click(function(){
		popupWindow = window.open(this.href,this.title,'menu=no,toolbar=no,width=500,height=600,scrollbars=1,resizable=0,directories=no,location=no,screenX=0,screenY=0,top=48,left=48');
		popupWindow.focus()
		return false;
	});
	
	$("a[rel=external], area[rel=external]").click(function(){
		popupWindow = window.open(this.href,this.title,'toolbar=yes,status=yes,location=yes,menubar=yes,directories=yes,resizable=yes,scrollbars=yes');
		popupWindow.focus()
		return false;
	});
	
	// Un-comment for prechecked Opt-ins
	/* if (!$("div").hasClass("error")) {
		$("input[name=primary_opt_in]").attr("checked", "checked");
	} */
});

function openWindow(link) {
	window.open(link, '_blank', 'width=800,height=600,toolbar=yes,status=yes,location=yes,menubar=yes,directories=yes,resizable=yes,scrollbars=yes');
}
