function clearDefaultandCSS(el) {
	if (el.defaultValue==el.value) el.value = ""
	// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}
function ajax_insert(id,container){
	document.getElementById(id).innerHTML=container;
	
}
