/*function loadDefault() {
	$$("input.formitem").each(
		function(fItem, index) {		
			fItem.setAttribute("oldImage", fItem.style.backgroundImage);
			fItem.value = "";
			
			if (!isIE) {
				fItem.style.marginLeft = "5px";
			}
			
			fItem.onfocus = function() {				
				this.style.backgroundImage = "url('')";
			}
			fItem.onblur = function() {
				if (this.value == "") {					
					this.style.backgroundImage = this.getAttribute("oldImage");
				}
			}
		}
	);
	
	var frma = $('newsfrm').getElementsByTagName("a")[0];
	frma.onclick = function() {
		var filled = true;
		$$("input.formitem").each(
			function(aF, index) {
				if (aF.value == '') {
					filled = false;
					return false;
				}
			}
		);
		
		if (filled == false) {
			alert("Please supply the required values");
			return false;
		}
		$('newsfrm').submit();
		return false;
	}
}

Event.observe(window, 'load', loadDefault);*/
