// Gallery

function openwindow(url,width,height) {
	availwidth = screen.availWidth;
	distleft = ((availwidth - width) / 2);
	disttop = 10;
    searchWin = window.open(url,'openwindow','width='+width+',height='+height+',left='+distleft+',top='+disttop+',scrollbars=yes,resizable=yes');
}