function Over(src) {
	src.style.cursor = 'hand';	
	src.className='selected';
}

function Out(src) {
	src.style.cursor = 'default';	
	src.className='voice';
}

function Click(src,page) {

	if(page=='this')
		this.document.location = src;
	else
		open(src);
}

function Open(src) {
	open(src,'leggenda','scrollbars=no,top=0,left=0,border=0, width=300,height=20');
}

function OpenVar(src,wd,hg,brs) {
  attributes='scrollbars='+brs+',top=0,left=0,border=0, width='+wd+',height='+hg;
  open(src,'wind',attributes);
}
