// JavaScript Document
function showHideTableRow(theTableRow,theImg)
{
if (document.getElementById(theTableRow).style.display == 'none')
   {
   document.getElementById(theTableRow).style.display = 'block';
   document.getElementById(theImg).src='images/minus.gif';
   }
   else
   {
   document.getElementById(theTableRow).style.display = 'none';
      document.getElementById(theImg).src='images/plus.gif';

   }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  newwindow = window.open(theURL,winName,features);
  if (window.focus) {newwindow.focus()}
}

function tellAFriend() {
	MM_openBrWindow("tell_a_friend.asp","","resizable=yes,scrollbars=yes,height=430,width=500");	
	return false;
}




