<!--

scrollit(100);

function scrollit(seed) {
var m1 = "Welcome to the Official Site";
var m2 = " of YOUR STATION,";
var m3 = " STEREO 974";
var m4 = "";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;
if (seed > 100) {
	seed--;
	cmd="scrollit("+seed+")";
	timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
	for (c=0 ; c < seed ; c++) {
		out+=" ";
	}
	out+=msg;
	seed--;
	window.status=out;
	cmd="scrollit("+seed+")";
	timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
	if (-seed < msg.length) {
		out+=msg.substring(-seed,msg.length);
		seed--;
		window.status=out;
		cmd="scrollit("+seed+")";
		timerTwo=window.setTimeout(cmd,100);
	}
else {
	window.status=" ";
	timerTwo=window.setTimeout("scrollit(100)",75);
	}
}

}
//-->


<!--
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)
win.focus()
}
//--?

<!--
function runClock() {
	theTime = window.setTimeout("runClock()", 1000);
	var today = new Date();
	var display = today.toLocaleString();
	if (document.getElementById('clock')) {
		document.getElementById('clock').innerHTML=display;
	}
}
//runClock();
//-->


<!--
/*
Gradual-Highlight Image Script II- 
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/

nereidFadeObjects = new Object();
nereidFadeTimers = new Object();

/* object - image to be faded (actual object, not name);
 * destop - destination transparency level (ie 80, for mostly solid)
 * rate   - time in milliseconds between trasparency changes (best under 100)
 * delta  - amount of change each time (ie 5, for 5% change in transparency)
 */

function nereidFade(object, destOp, rate, delta){
	return;
}
function nereidFade_TURNEDOFF(object, destOp, rate, delta){
if (!document.all)
return
    if (object != "[object]"){  //do this so I can take a string too
        setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
        return;
    }
        
    clearTimeout(nereidFadeTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    delta=Math.min(direction*diff,delta);
    object.filters.alpha.opacity+=direction*delta;

    if (object.filters.alpha.opacity != destOp){
        nereidFadeObjects[object.sourceIndex]=object;
        nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
    }
}

//-->

<!--

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 500;
defaultHeight = 500;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if(parseInt(navigator.appVersion.charAt(0))>=4)
{
	var isNN=(navigator.appName=="Netscape")?1:0;
	var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
	var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
	var optIE='scrollbars=yes,width=150,height=100,left='+PositionX+',top='+PositionY;
		
	function popImage(imageURL,imageTitle)
	{
		if (isNN)
		{
			imgWin=window.open('about:blank','',optNN);
		}
		if (isIE)
		{
			imgWin=window.open('about:blank','',optIE);
		}
		with (imgWin.document)
		{
			writeln('<html><head><title>Loading...</title><style>body{margin:5px;}</style></head>');
			writeln('<sc'+'ript>');
			writeln('var isNN,isIE;');
			writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
			writeln('isNN=(navigator.appName=="Netscape")?1:0;');
			writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');			
			writeln('function reSizeToImage(){');
			writeln('if (isIE){');			
			writeln('window.resizeTo(100,100);');
			//writeln('width=100-(document.body.clientWidth-(document.images[0].width + 15));');
			writeln('width=document.images[0].width + 20;');
			//writeln('height=100-(document.body.clientHeight-(document.images[0].height + 20));');
			writeln('height=document.images[0].height + 120;');
			//writeln('alert(\'width = \' + document.images[0].width ) ');
			writeln('window.resizeTo(width,height);}');
			writeln('if (isNN){');
			writeln('window.innerWidth=document.images["George"].width;');
			writeln('window.innerHeight=document.images["George"].height;}}');
			writeln('function doTitle(){document.title="'+imageTitle+'";}');
			writeln('</sc'+'ript>');
			if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
			else writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
			writeln('<div align="center"><img name="George" src='+imageURL+' border=0></div><div align="right"><a href="javascript: window.close(); style="STYLE="font-size:10; color:#575757; font-family: Verdana; text-decoration: underline;">close window</a></div></body></html>');
		close();
	}
}

//-->

