function openImage(ImgName, ImgPath)	{

	str = "board_image_view.asp?iname=" + ImgName + "&ipath=" + ImgPath

	new_win = window.open(str, "ImgWindow", "status, width=5, height=5, left=15, top=15, resiable=no, status=no scrollbars=no");
	new_win.focus();

	return;
}

function openImageGallery(ImgName)	{

	str = "/viewImage.asp?iname=" + ImgName

	new_win = window.open(str, "ImgWindow", "status, width=500, height=500, left=15, top=15, resiable=no, status=no scrollbars=no");
	new_win.focus();

	return;
}
