window.onload = function() {

	// create an array of objects of each link in the document
	var popuplinks = $("area.popup").click(function(){
		openPopUp($(this).attr("href"));
		return false;
	});

}
function openPopUp(linkURL) {
	var win = window.open(linkURL,'popup','width=620,height=700,toolbar=no,resizable=yes,scrollbars=yes');
}

