function popImage(imageURL,imageTitle){
	$("body").append("<img id='imgDimensions' src="+imageURL+" style='display:none' />");
	$("object").css("visibility","hidden");
	var imgWidth = document.getElementById("imgDimensions").clientWidth;
	var imgHeight = document.getElementById("imgDimensions").clientHeight;
	$(function() {
		//alert(imageURL);
		//$.nyroModalSettings({
			//url: imageURL
		//});
		$.nyroModalManual({
			title: imageTitle,
			width: imgWidth,
			height: imgHeight,
			padding: 0,
			content: "<img src="+imageURL+" />",
			endRemove: function() {
				var imageURL = "";
				$("object").css("visibility","visible");
				/*$("#imgDimensions").remove();*/
			}
		});
		return false;
	});
}
$(document).ready(function(){
	$('#NewsletterPopup').nyroModal({
		width: 350,
		height: 150
	});
});