
/* rewrite HTML */
/* ! prototype.js ! */

function rewriteHTML(id, filename){
	new Ajax.Updater(id, filename, {method:'get'});
}


/* SWAP IMAGE */

function swapIMG(url,name){
document[name].src=url;
}


/* OPEN HTML */

function openHTML(url,name,wid,hig){
var controlWindow = window.open(url,name,'width='+wid+',height='+hig+',resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1');
}


/* SHOW-HIDE */

function showOBJ(block){
document.getElementById(block).style.display = "block";
}
function hideOBJ(block){
document.getElementById(block).style.display = "none";
}


/* ANCHOR */

function ANCHOR(id){
	obj = document.getElementById(id);
	y = obj.offsetTop;
	scrollTo(0,y);
}