// JavaScript Document

function clock ()
{
	var now = new Date();
	var hour = now.getUTCHours();
	var minute = now.getUTCMinutes();
	var second = now.getUTCSeconds();
	hour = (hour - 5);
	if (hour < 1)
		hour = (hour + 12);
	time = "";
	if(hour > 12)
		hour = (hour - 12);
	time += hour;
	time += ((minute < 10) ? ":0" : ":") + minute;
	time += ((second < 10) ? ":0" : ":") + second;
	document.getElementById("displayclock").innerHTML = time;

	timerID = setTimeout("clock()",1000);
}

function sendmail ()
{
	window.location = "mail"+"to:"+"fye"+"@"+"indiana"+"."+"edu"
}

function changecursor ()
{
	this.style.cursor = 'pointer'
}

function email1 ()
{
	var title = 'fye'
	var domain = '@indiana'
	var extension = '.edu'
	
	return (title+domain+extension)
}

function copyright ()
{
	window.open("http://www.indiana.edu/copyright.html")
}

function trustees ()
{
	window.open("http://www.indiana.edu/~trustees/")
}

function complaint ()
{
	window.open("http://www.indiana.edu/copyright_complaints.shtml")
}

function IU ()
{
	window.open("http://www.indiana.edu/")
}

function mainmenu() {
document.write('<object type="application/x-shockwave-flash" data="http://www.indiana.edu/~fye/images/mainmenu.swf" width="170" height="580">')
document.write('<param name="movie" value="http://www.indiana.edu/~fye/images/mainmenu.swf">')
document.write('<param name="quality" value="high">')
document.write('<a href="http://get.adobe.com/flashplayer/" target="_blank">')
document.write('<img src="http://www.indiana.edu/~fye/images/mainmenu.jpg" width="170" height="580" border="0" alt="Get Flash!" title="Get Flash!"></a>')
document.write('</object>')
}

function homeflash() {
document.write('<object type="application/x-shockwave-flash" data="http://www.indiana.edu/~fye/images/home.swf" width="580" height="240">')
document.write('<param name="movie" value="http://www.indiana.edu/~fye/images/home.swf">')
document.write('<param name="quality" value="high">')
document.write('<a href="http://get.adobe.com/flashplayer/" target="_blank">')
document.write('<img src="http://www.indiana.edu/~fye/images/home.jpg" width="580" height="240" border="0" alt="Get Flash!" title="Get Flash!"></a>')
document.write('</object>')
}

function studentstaff() {
document.write('<object type="application/x-shockwave-flash" data="http://www.indiana.edu/~fye/images/studentstaff.swf" width="540" height="420">')
document.write('<param name="movie" value="http://www.indiana.edu/~fye/images/studentstaff.swf">')
document.write('<param name="quality" value="high">')
document.write('<a href="http://get.adobe.com/flashplayer/" target="_blank">Get Flash!</a>')
document.write('<img src="http://www.indiana.edu/~fye/images/studentstaff.jpg" width="540" height="420" border="0"></a>')
document.write('</object>')
}

function rannum(type)
{
	var image = Math.floor(Math.random()*7.9 + 1)
	var final = "<img border=0 src=http://www.indiana.edu/~fye/images/"+type+image+".jpg"
	return (final)
}

function expand(calledtag) {
   displaycss=document.getElementById(calledtag).style;
   if (displaycss.display=='none')
   {
   	displaycss.display='';
   }
   else {
   	displaycss.display='none';
   }
}
