function goToURL(linkElement)
{
	window.location = document.all[linkElement].href;
}
function goToURL2(linkElement)
{
	top.location = document.all[linkElement].href;
}
function tdOver(Element,linkElement)
{
	document.all[linkElement].style.textDecoration = "underline";
	Element.style.cursor = "hand";
}
function tdOut(Element,linkElement)
{
	document.all[linkElement].style.textDecoration = "none";
	Element.style.cursor = "default";	
}
function changeVideoObjectURL(videoName, videoURL)
{
	var video = null;
	if( document.getElementById )
		video = document.getElementById( videoName );
	else
		video = eval( "document." + videoName );
	if( video )
	{
		if( video.Filename )
			video.Filename = videoURL;
		else if( video.src )
			video.src = videoURL;
	} 
} 
