function CustomWindowOpener(PixW,PixH,WinName,scroll)



	{

		window.open('slidereklam.htm',WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll +',resizable=1,width=' + PixW + ',height=' + PixH + ',marginwidth=0,marginheight=0');

	}





var delay=1000 //(milisaniye olarak sure)

var fcontent=new Array()



var fwidth=340 //degisen genislik

var fheight=60 //degisen yukseklik



var ie4=document.all&&!document.getElementById

var ns4=document.layers

var DOM2=document.getElementById

var faderdelay=0

var index=0




if (DOM2)

faderdelay=2000



function changecontent(){

if (index>=ncontent){index=0;}

	if (DOM2){

		document.getElementById("fscroller").style.color="rgb(255,255,255)"

		if (index > 0){document.getElementById("fcontent["+(index-1)+"]").style.display="none";}

		else {document.getElementById("fcontent["+(ncontent-1)+"]").style.display="none";}

		document.getElementById("fcontent["+index+"]").style.display="";

		colorfade()

	}

	else if (ie4){

		if (index > 0){document.getElementById("fcontent["+(index-1)+"]").style.display="none";}

		document.getElementById("fcontent["+index+"]").style.display="";

	}

	else if (ns4){

	document.fscrollerns.document.fscrollerns_sub.document.write(fcontent[index])

	document.fscrollerns.document.fscrollerns_sub.document.close()

}

index++

setTimeout("changecontent()",delay+faderdelay)

}



frame=20;

hex=255  // Initial color value.



function colorfade() {	         	

// fading process

if(frame>0) {	

hex-=12; // increase color value

document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.

frame--;

setTimeout("colorfade()",20);	

}

else{

document.getElementById("fscroller").style.color="rgb(0,0,0)";

frame=20;

hex=255

}   

}



window.onload=changecontent
