
function openWin(width, height,imgPath){
	var uri = "/view.html?url="+imgPath+"&width="+width+"&height="+height;
	features = "resizable=no,width="+width+",height="+height+",scrollbars=no,menubar=no,status=no, toolbar=no";
	window.open(uri,'img', features);
}
