function highlightBorder(id) {
	document.getElementById(id).style.borderColor = "red";
	document.getElementById(id).style.cursor = "pointer";
}

function unlightBorder(id) {
	document.getElementById(id).style.borderColor = "#999999";
}

function selectAnswer(id, testId, answerId, questionNumber) {
	document.getElementById(id).style.backgroundColor = "red";
	document.getElementById(id).style.color = "white";

   if (testId > 0 && answerId > 0 && questionNumber > 0){
      var url = "http://www.uzmantv.com/testsurusu?testId="+testId+"&answerId="+answerId+"&questionNumber="+questionNumber;
      setTimeout("sendAnswer('" + url + "')", 200);
   }
}

function sendAnswer(url) {
   window.open(url, "_blank");
}
