function doReport(anchr){
	obj=document.getElementById("report");	
	h=(screen.availHeight!="undefined")?screen.availHeight:window.innerHeight;
	w=(screen.availHeight!="undefined")?screen.availHeight:window.innerWidth;
	obj.style.top=((h-300)/2)+"px";
	obj.style.left=((w-200)/2)+"px";
	obj.style.display="block";
	obj.innerHTML='Please write down the reason for reporting this : <br><textarea name="why" id="why" cols="30" rows="7"></textarea><br><font color="black"><b>* Only english charecters allowed</b></font><br><input type="button" value="Send" onclick="alert(\'Thanks your for the concern!\');location.href=\''+anchr.href+'&why=\'+encodeURIComponent(document.getElementById(\'why\').value);"><input type="button" value="Cancel" onclick="obj.style.display=\'none\';">';
	
}