// JavaScript Document

iens6=document.all||document.getElementById
ns4=document.layers

function abrescroll(nombre,ancho,alto,align,color){
	if (iens6) {
		document.write('<div id="'+nombre+'er" style="position:relative;width:'+ancho+'px;height:'+alto+'px;border:0px solid black;overflow:hidden">');
		document.write('<div id="'+nombre+'" style="position:absolute;width:'+(ancho-5)+'px;left:0;top:0;color:'+color+';text-align:'+align+'">');
	}
	document.write('<ilayer name="ns'+nombre+'er" width='+ancho+' height='+(ancho-5)+' clip="0,0,'+ancho+','+(ancho-5)+'">');
	document.write('<layer name="ns'+nombre+'" width='+ancho+' height='+(ancho-5)+' visibility=hidden>');
}

function cierrascroll(){
	document.write('</layer></ilayer>');
	if (iens6) document.write('</div></div>');
}