function popit(url){
	//window.open(url, '"gallery"', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=500,');
	newwindow=window.open(url,'name','height=500,width=500');
		if (window.focus) {newwindow.focus()}
}

$(document).ready(function() {
	$('a.popup').click( function() { 
		var thisSource = $(this).attr("href");
		popit(thisSource);
		return false
	 } );
});
