<!--
var PageTitle = document.title;
var PageURL = document.location.href;

function addToFavorites()	
 {
 if (window.external)
  {
    window.external.AddFavorite(PageURL, PageTitle)
  }
  else
  { 
   alert("Your browser does not support this function.");
  }
 }
 function validateLength(oSrc, args){
   args.IsValid = (args.Value.length >= 5);
}

function HideDiv(total, div){

var i=0
if (document.getElementById("answer" + div).style.display == 'block') {
	document.getElementById("answer" + div).style.display = 'none';		
	document.getElementById("li" + div).className ='normal';
	}	
else {
	for (i=1;i<=total;i++) {
		document.getElementById("answer" + i).style.display = 'none';		
		document.getElementById("li" + i).className ='normal';
		}	
	document.getElementById("answer" + div).style.display = 'block';
	document.getElementById("li" + div).className ='selected';
	}	
}
			function OpenWindow(url, name, w, h)
				{
					w += 32;
					h += 96;
					var win = window.open(url,
					name, 
					'width=' + w + ', height=' + h + ', ' +
					'location=no, menubar=no, ' +
					'status=no, toolbar=no, scrollbars=yes, resizable=no');
					win.resizeTo(w, h);
					win.focus();
				}
//-->