sendBlur('single-right-post-area');
sendBlur('single-right-post-name');
sendBlur('single-right-post-email');
function sendBlur(idname) {
	if($chk($(idname))){
		if(idname=='single-right-post-area')var f_Text='Je reactie';
		if(idname=='single-right-post-name')var f_Text='Naam';
		if(idname=='single-right-post-email')var f_Text='E-mail (word niet getoond, wel verplicht)';
		var f=$(idname);
		if (f.getProperty('value')==""||f.getProperty('value')==f_Text)f.setProperty('value',f_Text);
	}
} 
function sendFocus(idname) {
	if($chk($(idname))){
		if(idname=='single-right-post-area')var f_Text='Je reactie';
		if(idname=='single-right-post-name')var f_Text='Naam';
		if(idname=='single-right-post-email')var f_Text='E-mail (word niet getoond, wel verplicht)';
		var f=$(idname);
		if (f.getProperty('value')==f_Text)f.setProperty('value',"");
	}
}
