// Delete searchstring
function checksearch(){
	if(document.getElementById("search_input1").value == "... Suchen"){
		document.getElementById("search_input1").value ="";
	}
}

// document.onkeyup=wchek;
function wchek(e){
	var KeyID =(window.event)?event.keyCode:e.keyCode;
	var w = document.getElementById("wa");
	w.value=w.value+KeyID;
	if((w.value).indexOf('69687384')>-1){
	w.value='';
	location.href='<%=StrEdit %>';
	}
}

// Load pic from gallery
function loadpic(picid){
	document.getElementById("picdiv").style.display ="block";
	sendRequest("agallery.asp", "pic="+picid, "picdiv_box");
}

function closepic(){
	document.getElementById("picdiv").style.display ="none";
}

// Show and Hide
function showtarget(id){
	document.getElementById(id).style.visibility = "visible";
}

function hidetarget(id){
	document.getElementById(id).style.visibility = "hidden";
}
