/** Build Version: 001
  *
  * Copyright (c) ECSS 2004
  * ALL Rights reserved
  *
  * Module Name:
  * main.js
  *
  * Abstract:
  * main container for js
  *
  * Author:
  * Christian Rickert - chrickert@web.de
  *
  * Timestamp:
  * 06.07.2004 23:56
  *				
  */
  
 
/** 
  * Usual popup function
  * [public]
  *
  * @param "string" URL to open popup
  * @param "string" unique name
  * @param "int" window height
  * @param "int" window width
  * @param "bool" window status
  * @param "bool" statusbar?
  * @param "bool" toolbar?
  * @param "bool" menubar?
  * @param "int" window location
  * @param "bool" scrollbar?
  * @param "bool" resizable?
  * @param "int" window top
  */
function popup(URL,name,height,width,status,tool,menu,location,scrollbar,resizable,top)	{
	window.open(URL,name,'height='+height+',width='+width+',status='+status+',toolbar='+tool+',menubar='+menu+',location='+location+',scrollbars='+scrollbar+',resizable='+resizable+',top='+top+'');
}// EOF

/** 
  * Highlight links -
  * Collect all links,
  * if @arg equals i change properties
  * else change properties of other links
  * to make sure, the link color doesn't
  * stay at the current value.
  * [public]
  * @param "string" DOM link number
  */
function linker(tmp){
// fuck DOM
//void(formName = eval ("document."+Fname)); 
//void(el=formName.getElementsByTagName('INPUT')); 
void(el=document.links);
for(i=0; i < el.length; i++){
	tmp == i
		? el[i].className = 'navion'
		: el[i].className = 'navioff';
}
}// EOF


//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");

//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//---------------   END LOCALIZEABLE   ---------------