// JavaScript Document


function show_big_image(img_)
{ 
	var the_big_img_window = window.open('images/gallery/' + img_, 'big_image', 'width=790,height=550,left=' + ((screen.width - 790) / 2)+ ',top=20');
	the_big_img_window.focus();
	
}

