function initFormContact() {
	if (!$("frmContact")) return;
	var alertXML = new fLoadXML("Files/contact5.xml", true, function(){
		new validerAlert(
			"frmContactAlertBox", 
			"frmContact", 
			"contactSubmit", 
			this.aXml['form'][0].field, 
			{
				font: "11px/13px Verdana",
				txtColor: "#666",
				appTxtColor: "#f00",
				background: "#fff url(Files/System/_alert_bar.gif) 0 0 no-repeat",
				closeImage: "Files/System/_alert_close.gif",
				border: "1px solid #ccc",
				width: "128px"
			}
		);
	}
	
	);
}
//
function initFormSearch() {
	if (!$("searchForm")) return;
	var alertXML = new fLoadXML("Files/search.xml", true, function(){
		new validerAlert(
			"frmSearchAlertBox", 
			"searchForm", 
			"searchSubmit", 
			this.aXml['form'][0].field, 
			{
				font: "11px/13px Verdana",
				txtColor: "#666",
				appTxtColor: "#f00",
				background: "#fff url(Files/System/_alert_bar.gif) 0 0 no-repeat",
				closeImage: "Files/System/_alert_close.gif",
				border: "1px solid #ccc",
				width: "128px"
			}
		);
	}
	
	);
}

function initFormSearch1() {
	if (!$("searchForm1")) return;
	var alertXML = new fLoadXML("Files/search5.xml", true, function(){
		new validerAlert(
			"frmSearchAlertBox", 
			"searchForm1", 
			"searchSubmit1", 
			this.aXml['form'][0].field, 
			{
				font: "11px/13px Verdana",
				txtColor: "#666",
				appTxtColor: "#f00",
				background: "#fff url(Files/System/_alert_bar.gif) 0 0 no-repeat",
				closeImage: "Files/System/_alert_close.gif",
				border: "1px solid #ccc",
				width: "128px"
			}
		);
	}
	
	);
}
//


window.addEvent("load", function(){
	initFormContact();
	initFormSearch();
	initFormSearch1();
});