
// Pop up article Windows
$(document).ready(function(){
$("a.article").click(function (){
var url = $(this).attr("href");
window.open(url,"Article","scrollbars=1, toolbar=0, width=900 height=750");
return false;
});
});

// Close Pop Ups
$(document).ready(function(){
$("a.closeWindow").click(function (){
window.close();
return false;
});
});
