/*
	TOOGLE
*/
function myUnobtrusiveBehavior() {
			document.getElementById("toggle1Link").onclick = function() {
				setElementStyleById("aform", "display", "block");
				focusit();
				return false;
			};
		init();
		}
//var hide=true;
var locate = new String(""); 
locate += window.location;
//alert ("die variable locate ist: "+locate);
var point = locate.lastIndexOf("#");
//alert ("die variable point ist: "+point);

hide = locate.substring(point+1,locate.length);
//alert ("die variable hide ist: "+hide);
if (hide != "cform"){
		if (document.getElementById) { // include all feature tests needed for your DOM script
		   createStyleRule("#aform", "display:none;");
		   window.onload = myUnobtrusiveBehavior;
		}
}else{
window.onload = myUnobtrusiveBehavior;
}
