stringmenucss='<STYLE TYPE=TEXT/CSS>'+
//'.menua {text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:8pt;color:#000000}'+
//'.menua:hover {text-decoration:none;color:#CCCCFF}'+
'.menua {text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:8pt;color:#000066}'+
'.menua:hover {text-decoration:none;color:#99CCCC}'+
'#fondoDiv {position:absolute;left:-0px;top:1px;width:305px;height:80px;z-index:21;visibility:hidden}'+
'#menuDiv {position:absolute;left:4px;top:4px;width:290px;height:80px;z-index:22;visibility:hidden}'+
'</STYLE>'

//Se diferencia del Normal en el target

stringmenudiv="<DIV ID=fondoDiv><A HREF='"+pagina+"' target='_parent' onMouseOut='MM_swapImgRestore()' onMouseOver='MM_swapImage(\"Image44\",\" \",\"../imagen/volverover.gif\",1);window.status=\" \";return true' onFocus=this.blur()><IMG NAME=Image44 SRC=../imagen/volver.gif WIDTH=16 HEIGHT=70 BORDER=0></A><DIV ID=menuDiv>&nbsp;</DIV></DIV>"

document.write(stringmenucss)
document.write(stringmenudiv)

DynLayerInit()
fondo.timer=0
if (is.ns) {
	document.captureEvents(Event.MOUSEMOVE)
	fondo.YActual=window.pageYOffset
	fondo.netscrollint=setInterval('netscroll()',100)
	window.onresize=resizefix
} else if (is.ie) {
		window.onscroll=scroll
}
fondo.show()

function netscroll()
{
	if (window.pageYOffset!=fondo.YActual) {
		fondo.YActual=window.pageYOffset
		scroll()
	}
}

function scroll()
{
	fondo.hide()
	if (!fondo.timer) {
		fondo.timer=setTimeout('scrollfix()',500)
	} else {
		clearTimeout(fondo.timer)
		fondo.timer=setTimeout('scrollfix()',500)
	}
}

function scrollfix()
{
	if (fondo.estado) {
		if (is.ie) {
			fondo.moveTo(document.body.scrollLeft+1,document.body.scrollTop+1)
		} else if (is.ns) {
			fondo.moveTo(window.pageXOffset+1,window.pageYOffset+1)
		}
	} else {
		if (is.ie) {
			fondo.moveTo(document.body.scrollLeft-0,document.body.scrollTop+1)
		} else if (is.ns) {
			fondo.moveTo(window.pageXOffset-0,window.pageYOffset+1)
		}
	}
	fondo.show()
	fondo.timer=0
}

function resizefix()
{
	document.location.href=document.location.href
}




