
function submitenter(evt){
	var charCode = (evt.which) ? evt.which : event.keyCode
	if(charCode == "13"){
		document.form1.submit();
	}
} 

function showDiv(id) {
   document.getElementById(id).style.display='block';
}

function hideDiv(id){
    document.getElementById(id).style.display='none';
}

function delInputValue(id){
   var das = document.getElementById(id);
       das.value="";
}

function popUnder(){
    popunder = window.open('http://ad.adsone.de/jamba/','popunder', 'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
    popunder.blur();
}


