function changerow(up,object){
	object.className= (up)? "highlight":"nohighlight"
}
function changerow1(up,object){
	object.className= (up)? "highlight2":"nohighlight2"
}

function contains(container, containee) {
	if(!containee)return false
	if(document.all){
		return (container.contains(containee))
	}else{
	  var isParent = false;
	  do {
		if ((isParent = container == containee))
		  break;
		containee = containee.parentNode;
	  }
	  while (containee != null);
	  return isParent;
	}
	return false  
}

function gotoV(obj){
	for(i=0;i<document.links.length;i++){
		if(contains(obj, document.links[i])) location.href=document.links[i].href
	}
}

function nogo(){
	if(document.documentElement !=null)	return false
	if(document.all) return false
}

function gotoD(obj){
	location.href='detail'+obj;
}



