function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
function closeBox(id){
	if(document.getElementById(id).style.display=='none'){
		document.getElementById(id).style.display='block';
	}else{
		document.getElementById(id).style.display='none';
	}
	return false;
}
function showAllComments()
{
	
	document.getElementById('morecomments').style.display='block';
	document.getElementById('showcomments').style.display='none';
	return false;
}

function vNavUpdate(id){
//alert(id);

if (id == 'showNotes'){
	document.getElementById('showNotes').style.background='url(http://www.jokesandjesus.com/images/video/blank.jpg)'
	document.getElementById('subOptions').style.background='url(http://www.jokesandjesus.com/images/video/sections.jpg)'
	document.getElementById('sBox').style.display='block';
	document.getElementById('soBox').style.display='none';
	return false;
}

if (id == 'subOptions'){
	document.getElementById('subOptions').style.background='url(http://www.jokesandjesus.com/images/video/blank.jpg)'
	document.getElementById('showNotes').style.background='url(http://www.jokesandjesus.com/images/video/sections.jpg)'
	document.getElementById('sBox').style.display='none';
	document.getElementById('soBox').style.display='block';
	return false;
}


}
