// JavaScript Document
function checkContent(input,param,text){
	if(param){
		if(input.value == text) input.value = "";
	}else{
		if(input.value == "") input.value = text;
	}
}


