// JavaScript Document
function ShowPopup(site,w,h) 
{
	 
	var y=0;
	var x=0;
		var opt = "width=" + w + ",height=" + h + ",top=" + y + ",left=" + x + "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
 window.open(site,'_blank',opt);	
}
 function bold(id,rightanswer) {
  if (document.getElementById)
  {
    var pnl = document.getElementById(id);
  	if (rightanswer)
    {
		
	    pnl.style.fontWeight = 'bold';
	 	pnl.style.color = 'green';
	}
  	else
	{

		pnl.innerHTML = "<S><strong>"+ pnl.innerHTML+"<strong></S>";
  		pnl.style.color = 'red';
  	}
  }
 // else if (document.all) {
  //  document.all[id].style.fontWeight = 'bold';
  //}
}
