	function addInputEffect(){
	 	$("input[@type=text],input[@type=password],textarea,file").click(function(){
	 		$("input[@type=text],input[@type=password],textarea,file").each(function(){
		 			$(this).css("background-color","#ffffff");
		 			$(this).css("border","solid 1px gray");
	 		});
	 		$(this).css("background-color","#F7F7F7");
	 		$(this).css("border","solid 2px #6086B7");			
	 	})
	 	$("input[@type=text],input[@type=password],textarea,file").mouseover(function(){
	 		if($(this).css("background-color")=="#ffffff"){
	 			$(this).css("border","solid 2px #6086B7");
	 			$(this).css("background-color","#a9c3e8");
	 		}
	 	});
	 	$("input[@type=text],input[@type=password],textarea,file").mouseout(function(){
	 		if($(this).css("background-color")=="#a9c3e8"){
	 			$(this).css("border","solid 1px gray");	
	 			$(this).css("background-color","#ffffff");
	 		}
	 	});	 	
	 	$(".bgInput").mouseover(function(){
	 		$(this).css("background-color","#d1e6fe");
	 	});
	 	$(".bgInput").mouseout(function(){
	 		$(this).css("background-color","#ffffff");
	 	});	
/*	 	$("form").each(function(){
	 		var actionstr=$(this).attr("action");
	 		actionstr="javascript:showLoading('"+$(this).attr("name")+"','"+actionstr+"');";
	 		$(this).attr("action",actionstr);
	 	});*/
	}
	function gosubmit(formobj,act){
		//alert('okk');
		var ld=$("<div style='position: absolute;z-index:2000;left: expression((document.body.offsetWidth-100)/2);top:expression((document.body.offsetHeight-100)/2);width:160px;height:50px;border:solid 3px gray;filter:Alpha(Opacity=60);background-color:#fffffe'><table style='width:100px;height:25px'></tr><tr><td align='center' style='height:10px'><strong><font color='blue' size='2'>loading...</font></strong></td></tr><tr><td align='right' valign='middle' style='padding-left:8px;padding-bottom:5px'><div class='loadingIcon'>&nbsp;</div></td></table></div>")
		$("body").prepend(ld);
		if(act!=null&&act!=""){
			formobj.action=act;
		}
		formobj.submit();
		//$("form[@name="+formname+"]").attr("action",act);
		//$("form[@name="+formname+"]").submit();
	}