﻿// JScript File
// JavaScript Document
function callFunc()
{
	start()
	startDatum()
//	msgWindow()
}
//retunerar ID
function getObj(elementID)
{
	return document.getElementById(elementID);
	
}
function loadContent(elemID, URL){
	getObj(elemID).src = URL;
}

var timer = null

function stop()
{
clearTimeout(timer)
}

function start()
{
var time = new Date()
var hours = time.getHours()
var minutes = time.getMinutes()
minutes=((minutes < 10) ? "0" : "") + minutes
var seconds = time.getSeconds()
seconds=((seconds < 10) ? "0" : "") + seconds
var clock = hours + ":" + minutes + ":" + seconds
var theObj = getObj('tid')
theObj.innerHTML=clock
//document.forms[0].display.value = clock
timer = setTimeout("start()",1000)
}
function startDatum()
{
var d = new Date()
var dd
if(d.getMonth() < 10)
    dd = "0" + (d.getMonth() + 1)
//var date = (d.getFullYear())+(".")+(d.getMonth() + 1)+(".")+(d.getDate())
var date = (d.getFullYear())+(".")+dd+(".")+(d.getDate())
var theObj = getObj('datum')
theObj.innerHTML= date
}

function msgWindow()
{
//alert("kalle kula")
//	window.open("../pdf/Arets _Ledare _och _stipendium.pdf","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=550, height=600")
//	showModelessDialog("html/aretsTranare.htm")
	window.open('html/girona.htm','_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=500, height=430')
}

function storlek()
{
//	showModelessDialog("matchdag_060127.htm")
//resizeTo(700,400)
}
function showPopup(){
//	open("html/matchdag1.html",""," width=800, height=400")
//	open("html/matchdag_060128.html",""," width=800, height=800")
	//window.open('html/girona.htm','_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=500, height=430')
//	showModalDialog("html/aretsTranare.htm")
}


