function viewImage(img)
{
	var w = window.open("", "", "height=400, width=400, resizable=yes");
	w.document.write('<img src="'+img.src+'"/>');
	w.document.write('<br/><a href="javascript:window.close()">Close Window</a>');
	w.document.close();
}


