function adjustFrame(frame) {if (document.all) {		var h = frame.document.body.offsetHeight;		document.all[frame.name].height = h;		} else if (document.getElementById) {    var h = frame.document.height;    document.getElementById(frame.name).height = h;  }}function AP2(Oggetto,Proprieta,Valore) {  styleObject = document.getElementById( Oggetto );  styleObject = styleObject.style;  styleObject[Proprieta] = Valore;}function AP3(Oggetto,Proprieta,Valore,CooX,CooY) {AP2(Oggetto,Proprieta,Valore);AP2(Oggetto,'left',CooX);AP2(Oggetto,'top',CooY);}function VS(Oggetto) {	styleObject = document.getElementById( Oggetto );	styleObject = styleObject.style;	if (styleObject['display'] == 'block') {		styleObject['display'] = 'none';				} else {			styleObject['display'] = 'block';			}}
