/**
 * Gallery.js
 */

function viewImage(path, id, idlang) {
	var url = path + "public/Gallery/viewImage.php?id=" + id + "&idLang=" + idlang;
	var f = "width=500, height=500, status=0, menubar=0, location=0, directories=0, resizable=0";
	var v = window.open(url, 'imagewindow_' + id, f);
	v.focus();
	v.moveTo(0, 0);
}
