/* CENTERED POPUP */


function popup(url,name,windowWidth,windowHeight){
	myleft 		= (screen.width)?(screen.width-windowWidth)/2:100;
	mytop		= (screen.height)?(screen.height-windowHeight)/2:100;
	properties  = "width="+windowWidth+",height="+windowHeight+",scrollbars=no, top="+mytop+",left="+myleft;
	window.open(url,name,properties);
}

function gallery(url) {
	title 	= 'Laywers Have Heart';
	theight	=  420;
	twidth	=  457;
	popup(url,'',450, 457);
}