function popup_window (str_url) {
	var obj_window = window.open(str_url, 'PhotoGalleryViewer', 'width=525,height=535,status=no,resizable=no,top=200,left=200,dependent=yes,alwaysRaised=yes');
	obj_window.opener = window;
	obj_window.focus();
}

