
function open_img(img_path) {
	window.open('image_jsview.php?img_path='+ img_path,'','width=200,height=200,scrollbars=yes ,resizable=yes,location=no,menubar=no,toolbar=no,t op=0,left=0');
	return false;
}

function resize_img_win(id) {
	var obj = document.getElementById(id);
	if ( obj ) {
		self.resizeBy(obj.width - document.body.clientWidth ,obj.height - document.body.clientHeight);
	}
}
