<!-- JavaScript Buttom on/off

// Buttoms On/Off Index - Atelier - Maria José Pesce
// Author: Hi-Tek Assistance -- http://www.hitekassistance.it


if (document.images) {var ver_flash = new Image()
	ver_flash.src = "buttons/ver_flash.gif"
	var ver_flash_on = new Image()
	ver_flash_on.src = "buttons/ver_flash_on.gif"}
	
if (document.images) {var ver_html = new Image()
	ver_html.src = "buttons/ver_html.gif"
	var ver_html_on = new Image()
	ver_html_on.src = "buttons/ver_html_on.gif"}
	
	
function act(imgName) {if (document.images)document[imgName].src = eval(imgName + '_on.src')}
function inact(imgName) {if (document.images)document[imgName].src = eval(imgName + '.src')}


// -->
