<!--
function newWindow(myURL,winName,w,h,scroll){
	if(w=='' && h=='') {
		TopPosition = 0;
		LeftPosition = 0;
		h = screen.height-60;
		w = screen.width-10;
	}
	else {
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	}
	features = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	Fenster = window.open(myURL,winName,features);
}


// cell functions
function mOver(cell,color)
{
   x = cell.style.getAttribute("cursor","false");
   if (!cell.contains(event.fromElement))
   {
     cell.style.background = color;
   }
   if (x != 'hand')
   {
         cell.style.cursor = 'default';
   }
}

function mOut(cell,color)
{
   x = cell.style.getAttribute("cursor","false");
   if (!cell.contains(event.toElement))
   {
      cell.style.background = color;
   }
   if (x != 'hand')
   {
         cell.style.cursor = 'default';
   }
}

function mClick(link)
{
   if(event.srcElement.tagName=='TD')
   {
	  location.href= link;
   }
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
/*
function uhr() {
var gmt, h, m, s;
var zeit=new Date();
gmt=zeit.getUTCHours()+2;
h=zeit.getHours();
m=zeit.getMinutes();
s=zeit.getSeconds();

seoulh=gmt+7;
if (seoulh>23) {
seoulh=seoulh-24;
}
if (seoulh<10) {
seoulh="0"+seoulh;
}
if (gmt<10) {
gmt="0"+gmt;
}
if (h<10) {
h="0"+h;
}
if (m<10) {
m="0"+m;
}
if (s<10) {
s="0"+s;
}
window.document.Zeit.UTCTime.value=gmt + ":" + m + ":" + s;
window.document.Zeit.SeoulTime.value=seoulh + ":" + m + ":" + s;
window.setTimeout("uhr()",1000);
}*/
//-->
