// SPONSOR   
var floattext=new Array()
floattext[0]="<img src='images/sponsor1all.gif'>"
floattext[1]="<img src='images/sponsor2all.gif'>"
floattext[2]="<img src='images/sponsor3all.gif'>"
floattext[3]="<img src='images/sponsor4all.gif'>"
floattext[4]="<img src='images/sponsor5all.gif'>"
floattext[5]="<img src='images/sponsor6all.gif'>"
floattext[6]="<img src='images/sponsor7all.gif'>"
floattext[7]="<img src='images/sponsor8all.gif'>"
floattext[8]="<img src='images/sponsor9all.gif'>"

var floatiewidth="150px" //default width of floatie in px
var floatieheight="60px" //default height of floatie in px. Set to "" to let floatie content dictate height.
var floatiebgcolor="" //default bgcolor of floatie
var fadespeed=25 //speed of fade (5 or above). Smaller=faster.

var baseopacity=0

function slowhigh(which2){
	imgobj=which2
	browserdetect=which2.filters? "ie" : typeof which2.style.MozOpacity=="string"? "mozilla" : ""
	instantset(baseopacity)
	highlighting=setInterval("gradualfade(imgobj)",fadespeed)
	}

function instantset(degree){
	cleartimer()
	if (browserdetect=="mozilla")
	imgobj.style.MozOpacity=degree/100
	else if (browserdetect=="ie")
	imgobj.filters.alpha.opacity=degree
	}

function cleartimer(){
	if (window.highlighting) clearInterval(highlighting)
	}

function gradualfade(cur2){
	if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
	cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.1, 0.99)
	else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
	cur2.filters.alpha.opacity+=10
	else if (window.highlighting)
	clearInterval(highlighting)
	}

function ietruebody(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
	}

function paramexists(what){
	return(typeof what!="undefined" && what!="")
	}


function showfloatie(thetext, e, optbgColor, optWidth, optHeight){
	var dsocx=(window.pageXOffset)? pageXOffset: ietruebody().scrollLeft-160;
	var dsocy=(window.pageYOffset)? pageYOffset : ietruebody().scrollTop-120;
	var floatobj=document.getElementById("dhtmlfloatie")
	floatobj.style.left="-900px"
	floatobj.style.display="block"
	floatobj.style.backgroundColor=paramexists(optbgColor)? optbgColor : floatiebgcolor
	floatobj.style.width=paramexists(optWidth)? optWidth+"px" : floatiewidth
	floatobj.style.height=paramexists(optHeight)? optHeight+"px" : floatieheight!=""? floatieheight : ""
	floatobj.innerHTML=thetext
	var floatWidth=floatobj.offsetWidth>0? floatobj.offsetWidth : floatobj.style.width
	var floatHeight=floatobj.offsetHeight>0? floatobj.offsetHeight : floatobj.style.width
	var winWidth=document.all&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
	var winHeight=document.all&&!window.opera? ietruebody().clientHeight : window.innerHeight
	e=window.event? window.event : e
	floatobj.style.left=dsocx+winWidth-floatWidth-5+"px"
	if (e.clientX>winWidth-floatWidth && e.clientY+20>winHeight-floatHeight)
	floatobj.style.top=dsocy+10+"px"
	else
	floatobj.style.top=dsocy+winHeight-floatHeight-10+"px"
	slowhigh(floatobj)
	}

function hidefloatie(){
	var floatobj=document.getElementById("dhtmlfloatie")
	floatobj.style.display="none"
	}

// FILTRO ANTISPAM   
function nosp(nome,dominio) {
    	document.location = "mailto:" + nome + "@" + dominio;
	}


	
	
var win = null;

function NewWindow(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus){win.window.focus();}
	}

function loginsubmit() {

	document.submitForm.action="default.asp?step=2";
	document.submitForm.submit();
  }

// Barra di stato scorrimento
	var scrtxt="Club500Pescara.it               |||             tel.: 085.7931322  Cell. 328.4744301 ";
	var lentxt=scrtxt.length;
	var width=100;
	var pos=1-width;
	
	
function scorrevole() {
	pos++;
	var scroller="";
	if (pos==lentxt) {
	pos=1-width;
	}
	if (pos<0) {
	for (var i=1; i<=Math.abs(pos); i++) {
	scroller=scroller+" ";}
	scroller=scroller+scrtxt.substring(0,width-i+1);
	}
	else {
	scroller=scroller+scrtxt.substring(pos,width+pos);
	}
	window.status = scroller;
	setTimeout("scorrevole()",180);
	}

// Copyright ©

<!--
    today=new Date();
    y0=today.getFullYear();
// --->



// Titolo scorrevole
var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
  titl=title.substring(start, leng) + title.substring(0, start)
  document.title=titl
  start++
  if (start==leng+1) {
    start=0
    if (repeat==0)
    return
  }
  setTimeout("titlemove()",140)
}

