// ---------------------------------
// 
// ...
// 
// ---------------------------------


function setButton(obj, imagealt, imageneu)
{
	obj.src=eval("obj.src.substring(0, obj.src.lastIndexOf(imagealt))+imageneu");
}

function reloadFrameSet(obj)
{
	obj = eval(obj);
	if (obj.document == top.document)
	{
		obj.document.writeln("<frameset cols='*,800px,*' border='0'>");
		obj.document.writeln("<frame name='leer1' src='leer.html' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>");
		obj.document.writeln("<frameset  rows='115px,*,40px'>");
		obj.document.writeln("<frame name='top' src='top.html' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>");
		obj.document.writeln("<frame name='main' src='" + obj.document.URL + "?" + new Date().getTime() + "' marginwidth='0' marginheight='0' scrolling='auto' frameborder='0' noresize>");
		obj.document.writeln("<frame name='down' src='down.html' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>");
		obj.document.writeln("</frameset>");
		obj.document.writeln("<frame name='leer2' src='leer.html' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>");
		obj.document.writeln("</frameset>");
	}
}