var newwindow;
function popupmeasures(url,iHeight,iWidth)
{
	newwindow=window.open(url,'name','height=' + iHeight + ',width=' + iWidth);
	if (window.focus) {newwindow.focus()}
}
function popupwindow(url)
{
	newwindow=window.open(url,'name','height=400,width=200');
	if (window.focus) {newwindow.focus()}
}

function LiveClock() {
    var date = new Date();
    var year = date.getFullYear();
    var month = date.getMonth() + 1; /* the getMonth function returns the months from 0 to 11 */
    var day = date.getDate();
    var hour = date.getHours();
    var minute = date.getMinutes();
    var second = date.getSeconds();
    
    if (hour > 12) {
        hour = hour;
    }
    if (minute < 10) {
        minute = "0" + minute;
    }
    if (second < 10) {
        second = "0" + second;
    }

    document.getElementById('date').innerHTML = day + "." + month + "." + year;
    document.getElementById('time').innerHTML = hour + ":" + minute + ":" + second;    
    setTimeout("LiveClock()", 1000);
}

