/* funktionen fuer kontaktformular, 2008 by backslash - artists of new media */
function setSendTo(e,fieldName){getE(fieldName).value = e.options[e.selectedIndex].title.toString();}
function checkContactHash(){
	var fHash = window.location.hash;
	if(fHash!=""){
		fHash = unescape(fHash.replace(/#/,""));
		var e = getE('f');
		var oLen = e.options.length;
		for(var i = 0; i<oLen; i++){
			if(e.options[i].value==fHash){
				e.selectedIndex = i;
				setSendTo(e,'sendto');
				break;
				}
			}
		}
	}

addLoadEvent(checkContactHash);
