//browsers
	ie5 = (document.all && document.getElementById);
	ns4 = (!document.all && !document.getElementById);
	ns6 = (!document.all && document.getElementById);
	
//function which returns the right object for the client's browser	
	function Elem(objectID){
		if(ie5) return eval('document.all.' + objectID);
		if(ns6) return document.getElementById(objectID);
		if(ns4) return eval('document.' + objectID);
	}
	
//fixing netscape/mozilla css
	if(ns4 || ns6){
		document.write('<style type=\"text\/css\">\n.blacktext{ width: 530px; height: 126px; }\n<\/style>');
	}