//	----------------------------------------------------------------------------------------
//	@Aji Yahya - MOSAIQ-MEDIA GmbH :27.06.2007 :JAVASCRIPT FÜR QUINN www.quinn.de /
//	----------------------------------------------------------------------------------------

<!--
function clearDefault(el) {

  if (el.defaultValue==el.value) 
  {
  	el.value = "";
  }

}

function resetSearch(e1, targetValue) {
	if(e1.value=="") 
	{
	  e1.value = targetValue;
	}
}
//the function starts when the whole site is loaded
window.onload = init;

function init() {
	if (Password = document.getElementById('password')) {
	 	Password.style.backgroundImage = "url(fileadmin/templates/main/layout/password_bg.gif)";
	 	Password.onfocus = emptyValue;
		Password.onblur = refillValue;
	}
}

function emptyValue() {
	if (Password) {
       
		Password.style.backgroundImage = "none";
	}
}

function refillValue() {
	if (Password.value == "") {
		
   		 Password.style.backgroundImage = "url(fileadmin/templates/main/layout/password_bg.gif)";
	}
}

//-->