var attributes = "location=no,status=yes,resizable=no,scrollbars=no,width=250,height=200,left=400,top=200";

$(document).ready(function() {
	var url = $("#securePopupLink").attr("href");
	$("#securePopupLink").removeAttr("href");
	$("#securePopupLink").removeAttr("target");
	$("#securePopupLink").click(function() {
		window.open(url, 'securePopup', attributes);
	});
});