//preload Images:
function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}

//popUp Window:
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
	if(popUpWin)
	{
	  if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = window.open("about:blank","_blank","width="+width+",height="+(height+30)+",left=200,top=90,location=no,directories=no,status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no");
	popUpWin.document.open();
	popUpWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n<html>\n<head>\n<title>'+URLStr+'</title>\n\n<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">\n\n');
	popUpWin.document.write('<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" align="center">\n\t<tr>\n\t\t<td align="center" valign="top">\n\t\t\t<img src="'+URLStr+'" width="'+width+'" height="'+height+'" border="1" onclick="javascript:window.close()" />\n\t\t\t<a href="javascript:window.close()" title="Bitte hier klicken, um dieses Fenster zu schließen">Fenster schlie&szlig;en</a>\n\t\t</td>\n\t</tr>\n</table>\n\n</body>\n</html>');
	popUpWin.document.close();
	popUpWin.focus();
}

//select jump Navigation:
function jumpMenu(page)
{
	window.location.href = page;
}
