	/*var timerID = null;
	var timerRunning = false;
	var id,pause=0,position=0;
	
	function stopclock (){
	        if(timerRunning)
	                clearTimeout(timerID);
	        timerRunning = false;
	}
	function showtime () {
	        var now = new Date();
	        var hours = now.getHours();
	        var minutes = now.getMinutes();
	        var seconds = now.getSeconds()
	        var timeValue = "" + ((hours >12) ? hours -12 :hours)
	        timeValue += ((minutes < 10) ? ":0" : ":") + minutes
	        timeValue += ((seconds < 10) ? ":0" : ":") + seconds
	        timeValue += (hours >= 12) ? " P.M." : " A.M."
	        document.clock.face.value = timeValue;
	        timerID = setTimeout("showtime()",1000);
	        timerRunning = true;
	}
	function startclock () {
	        stopclock();
	        showtime();
	}*/
	var i=1;
	/*function slidepic(){
		if(i==8) i=1;
		document.getElementById("picslide").src = "pictures/pic"+i+".jpg"
		i++;
		setTimeout('slidepic()',3000);
	}*/
	function slidepic(){
		document.getElementById("pic1").style.display = "none";
		document.getElementById("pic2").style.display = "none";
		document.getElementById("pic3").style.display = "none";
		document.getElementById("pic4").style.display = "none";
		document.getElementById("pic5").style.display = "none";
		document.getElementById("pic6").style.display = "none";
		document.getElementById("pic7").style.display = "none";
		
		if(i==8) i=1;
		document.getElementById("pic"+i).style.display = "";
		i++;
		setTimeout('slidepic()',3000);
	}
	function toSwitchMainframe(str){
		document.getElementById("mainframe").src=str;
	}
	function toMouseOverMenu(id){
		document.getElementById(id).style.backgroundColor = "#e1e1e1";
	}
	function toMouseOutMenu(id){
		document.getElementById(id).style.backgroundColor = "#f4f4f4";
	}
	function toMouseOverHome(id){
		document.getElementById(id).style.backgroundColor = "#d7eafd";
	}
	function toMouseOutHome(id){
		document.getElementById(id).style.backgroundColor = "#FFFFFF";
	}
	function toMouseOver(id){
		document.getElementById(id).style.backgroundColor = "#E7E8F5";
	}
	function toMouseOut(id){
		document.getElementById(id).style.backgroundColor = "#FFFFFF";
	}
	function getToday(){
			var tmpdate="";
	    	var tmpday = "";
	    	var tmpmonth = "";
	    	var tmpyear = "";
	    	
			var now = new Date();
    		if(now.getDate()<10)
    		tmpday = "0"+now.getDate();
    		else
    		tmpday = now.getDate();
    		if((now.getMonth() + 1)<10)
    		tmpmonth = "0"+(now.getMonth() + 1);
    		else
    		tmpmonth = (now.getMonth() + 1);
    		
    		tmpyear = now.getYear() + 543;
    		
			tmpdate = (tmpday + "/" + tmpmonth + "/" + tmpyear);
			
			document.getElementById("date").value = tmpdate;
	}
