<!--
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
appear()
setTimeout("window.onresize=regenerate",450)
}
}

function changetext(whichcontent, id){	
if (!id) id="descriptions";

if (document.all||document.getElementById){
cross_el=document.getElementById? document.getElementById(id):document.all[id]
cross_el.innerHTML=whichcontent
}
else if (document.layers){
document.layers[id].open()
document.layers[id].write(whichcontent)
document.layers[id].close()
}

}

function appear(){
document.d1.visibility='show'
}

window.onload=regenerate2


//-->