function redirect(Url){
	document.location = Url;
}

function toggle(fieldId,display) {
	var fieldObj = document.getElementById(fieldId);
	if(display)
		fieldObj.style.display = 'block';
	else
		fieldObj.style.display = 'none';
}

function setVote(questionid,answerid,rating){
	var answer = answerid
	var width = (rating * 15)+"px" ;
	document.getElementById('q'+answer).style.width = width;
	document.getElementById('question'+answer).value = rating;
}
