﻿//<!--
function focusSimpleSearch()
{
    document.simpleform.sp_q.focus();
}


function checkform_de ( form )
{
    if (form("sp_q").value == "") {
        alert( "Geben Sie bitte einen Suchbegriff ein." );
        form("sp_q").focus();
        return false ;
    }
	return true ;
}

function checkform_en ( form )
{
    if (form("sp_q").value == "") {
        alert( "Insert a search expression." );
        form("sp_q").focus();
        return false ;
    }
	return true ;
}

function checkform_fr ( form )
{
    if (form("sp_q").value == "") {
        alert( "Ecrivez svp un mot de recherche." );
        form("sp_q").focus();
        return false ;
    }
	return true ;
}

function checkform_it ( form )
{
    if (form("sp_q").value == "") {
        alert( "Inserire il termine da ricercare p.f." );
        form("sp_q").focus();
        return false ;
    }
	return true ;
}

//-->