// pagefunctions.js

$(document).ready(init);

function init(){
	$("A.popup").click(handle_popups);	
}


function handle_popups (){
	var path = $(this).attr("href");
	var newWin = window.open(path, "popup_win", "width=800,height=600,scrollbars=1,resizeable=1");
	return false;
}
