function openGallery() 
{
    var linklocation = '/PressRoom/PhotoGallery/gallery.asp?page=1';
	var width = screen.width - 80;
	var height = screen.height - 100;
	var top = 20;
	var left = 20;
   
   	var features = 'width='+width+',height='+height+',left='+left+',top='+top+',';
    features += 'toolbar=no,resizable=yes,menubar=no,location=no,scrollbars=yes,status=no,personalbar=no';
   	var smallWin = window.open(linklocation,'alertWin',features);
    smallWin.focus();

}