function showImgPopUp( imgUrl, w, h ){

	window.open(
		imgUrl,
		"_blank",
		"top=10,left=10,width=" + (w + 20) + ",height=" + (h + 20) + ",location=0,status=0,scrollbars=1"
	);

}
