function checkthis(input){
	if( document.getElementById(input).value == "" ){
		document.getElementById(input).style.background = "none";
	}
	else{
		document.getElementById(input).style.background = "#ffffff";
	}
}