function cText(obj){
if(obj.value==obj.defaultValue){
obj.value="";
obj.style.color="#000";
obj.style.fontWeight = "normal";
}
}

function sText(obj){
if(obj.value==""){
obj.value=obj.defaultValue;
obj.style.color="#999";
obj.style.fontWeight = "normal";
}
}


function dummyFocus(id){
	$('#' + id + '-dummy').hide();
	$('#' + id).show().focus();
}
function passwordBlur(id){
	if($('#' + id).val() == ''){
		$('#' + id + '-dummy').show();
		$('#' + id).hide();
	}
}