	if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPod/i))) {
		document.location = "http://theremembrall.org/iphone";
	}

function ConvertRowsToLinks(xTableId){

var rows = document.getElementById(xTableId).getElementsByTagName("tr");

for(i=0;i<rows.length;i++){
  var link = rows[i].getElementsByTagName("a")
  if(link.length == 1){
	rows[i].onclick = new Function("document.location.href='" + link[0].href + "'");
	rows[i].onmouseover = new Function("this.className='row_over'");
	rows[i].onmouseout = new Function("this.className=''");
  }
}

}

function launchPlayer() {
  popUpWin = open("/player.php", 'playerWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=520,height=220');
}