/*****************************************************
allg. funktion - finde object crossbrowser style
*****************************************************/
function findObject (id, doc) {
	if(!doc) {var d = window.document; } else {var d = doc; }
	var theObj = (d.all)?d.all[id]:((d.layers)?d.layers[id]:d.getElementById(id));	
	return theObj;
}
/***************************************************
show DIV
****************************************************/
function showDiv(divId, elementType) {
	var theDiv = findObject(divId);
	theDiv.style.display = "block";
        if(elementType == "inline") {
        theDiv.style.display = "inline";
        }
	
}
/***************************************************
hide DIV
***************************************************/
function hideDiv(divId) {
	var theDiv = findObject(divId);
	theDiv.style.display = "none";
}