// JavaScript Document
function cText(obj,str){
	if(obj.value==str){
		obj.value="";
		obj.style.color="#666";
	}
}

function sText(obj,str){
	if(obj.value==""){
		obj.value=str;
		obj.style.color="#999";
	}
}
