var g_hDot1 = new Image()
g_hDot1.src = "../hImages/hDot1.jpg"
var g_hDot2 = new Image()
g_hDot2.src = "../hImages/hDot2.jpg"
function hMenuHighlightOn( p_td, p_id )
{
	if ( null == p_td ) return
	p_td.style.backgroundColor = "#4AA7EE"
	if ( null == p_id ) return
	var o = document.getElementById( "hDot-" + p_id )
	if ( null == o ) return
	o.src = g_hDot1.src
}
function hMenuHighlightOff( p_td, p_id )
{
	if ( null == p_td ) return
	p_td.style.backgroundColor = ""
	if ( null == p_id ) return
	var o = document.getElementById( "hDot-" + p_id )
	if ( null == o ) return
	o.src = g_hDot2.src
}
function hHref( p_href )
{
	if ( null == p_href ) return
	parent.hMain.location.href = p_href
}


<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


function hDisplayImage( p_src )
{
	document.location.href = "hDisplayImage.html?src=" + p_src
}