function FormSubmit(oldal){
	frm = document.getElementById('form1');
	frm.action = oldal;
	frm.submit();	
}
function loginSubmit(oldal){
	frm = document.getElementById('loginForm');
	frm.action = oldal;
	frm.submit();	
}
function goSearch(){
	clearImput('searchwhat', ' - keresendő szó - ');
	input = document.getElementById('searchwhat');
	window.document.location.href = 'search.php?q='+input.value
}

function clearImput(inputname,currcontent){
	input = document.getElementById(inputname);
	if(currcontent == '' || input.value == currcontent)
		input.value = '';
}
function restoreImput(inputname,restorecontent){
	input = document.getElementById(inputname);
	if(input.value =='')
		input.value = restorecontent;
}
function php(oldal,dw){
		document.getElementById('dw').value = dw;
		FormSubmit(oldal);
}