window.addEvent("domready", function() {
	$$("div.scrollarea div").each(function(div){
		div.setStyles("bottom:-71px; cursor:pointer;");
		div.fxMove = new Fx.Style(div, "bottom", {
			duration: 500,
			transition: Fx.Transitions.Back.easeOut
		});
		div.addEvent("mouseenter", function(e) {
			//this.setOpacity(0.8);
			this.fxMove.stop();
			this.fxMove.start(0);
		});
		div.addEvent("mouseleave", function(e) {
			//this.setOpacity(1);
			this.fxMove.stop();
			this.fxMove.start(-71);
		});
	});
});

////////////////////////////////////////////////
function showForm(index){
	var tabs = $$("div.search");
	if (tabs.length == 0) return;
	for(i=0;i<tabs.length;i++){
		tabs.setStyles({position: "absolute", top:"-10000px", left:"-5000px"});
	}
	tabs[index].setStyles({position: "static", top:"0px", left:"0px"});
	document.getElementById("error").style.display="none";
}
///////////////////////////////////////////
function resetForm(frmObj)
{	
	frmObj.username.value="";
	frmObj.password.value="";
	frmObj.username.focus();
}
function openBrWindow(filename,win_width,win_height,win_name)
{
window.open(filename,win_name,'width='+win_width+',height='+win_height+',top=20,right=20,menubar=no,status=no,resizable=no,scrollbars=no');
}

