// JavaScript Document

// Ajax Process
function ajaxRequest(url,data,returnFunction) {
	var perform = new Ajax.Request(url, {method:'get', parameters: data, onComplete: returnFunction});
}

function display(e) {
	alert(e.responseText)
}

	// This javascript funtion show the login box
function ShowLoginBox(element) {
	new Effect.BlindDown(element,{duration:0.2});
} 

	// This javascript function hide the login box
function HideLoginBox(element) {	
	new Effect.BlindUp(element,{duration:0.1});
}

