/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function cursorRein(me) {
    var iinput = document.getElementById(me);
    iinput.value = '';
    //alert(iinput.style.fontStyle);
    iinput.style.color = '#000000';
    iinput.style.fontStyle = 'normal';
    iinput.style.backgroundColor = 'yellow';
    
}

function cursorRaus(me) {
    var iinput = document.getElementById(me);
    
    if(iinput.value == '') {
        iinput.style.color = '#a19d9d';
        iinput.style.fontStyle = 'italic';
        iinput.value = 'suche ...';
        iinput.style.backgroundColor = 'white';
    }

}
