// JavaScript Documentvar x = 100;var src = 'news.html';var fadeOut = 100;var fadeIn = 0;var fadeCom = 0;function moveFunc(){			if (x < 100) {		/*document.getElementById('mov').style.top =  x + "0px";*/		document.getElementById('ifra').style.filter = 'alpha(opacity='+x+')';		document.getElementById('ifra').style.opacity =  (x/100);		x = (x+5);		setTimeout('moveFunc()', .3);		} }function adjustFrame(h){	document.getElementById('ifra').style.height = h;	}function moveUpRadio(s){				if (parent.ifra.removeHeader)		{			parent.ifra.removeHeader();		}		if (parent.ifra.removeTv)		{			parent.ifra.removeTv();		}		if (src != s)		{ 		src = s;		}		if (x > -1) {		/*document.getElementById('mov').style.top =  x + "0px";*/		document.getElementById('ifra').style.filter = 'alpha(opacity='+x+')';		document.getElementById('ifra').style.opacity =  (x/100);		x = (x-5);		setTimeout('moveUpRadio(src)', .3);		}		if (x < 0)		{			parent.ifra.location = src;		}}function fade(s, frameSrc){		if (fadeCom == 0) {		if (fadeOut > 0)		{			document.getElementById('ifra').style.filter = 'alpha(opacity='+fadeOut+')';		document.getElementById('ifra').style.opacity =  (fadeOut/100);			fadeOut = fadeOut - 5;		setTimeout('fade('+s+', "'+frameSrc+'")', .05);		} else {			document.ifra.location = frameSrc;			fadeCom = 1;				setTimeout('fade('+s+', "'+frameSrc+'")', 1000);					}	} else {				fadeOut = 100;		fadeCom = 0;				window.frames.ifra.initPhoto(s);		document.getElementById('ifra').style.filter = 'alpha(opacity='+fadeOut+')';		document.getElementById('ifra').style.opacity =  (fadeOut/100);	}} 