// JavaScript Document

function f_open_gallery(s_root,n_id,gallery_id) {
	n_top=screen.height/2-250; n_left=screen.width/2-150;
	
 	win_gallery=window.open(s_root +'/ser/gallery/gallery.php?ID=' + n_id + '&gID=' + gallery_id,'_blank','resizable=yes,scrollbars=no,width=300,height=300,toolbar=no,top='+n_top+',left='+n_left);
}	

function f_open_picture(s_root,s_picture) {
	n_top=screen.height/2-200; n_left=screen.width/2-150;
	
 	win_gallery=window.open(s_root +'/ser/gallery/one_picture.php?picture=' + s_picture,'_blank','resizable=yes,scrollbars=no,width=300,height=300,toolbar=no,top='+n_top+',left='+n_left);
}	

