/*
SH 2010 Website
Written By Fahim Kawsar @ Lancaster Universtiy.
*/

// JavaScript Document

/* Ajax handlers*/

function retrieveGetContent(url,target)
{
		var myAjax = new Ajax.Updater(target,url, {
		method: 'get',
		evalScripts: true,
		onLoaded:function() {},
		onSuccess: function() { },
		onComplete: function() {}
	
	});
}

function retrievePostContent(form,url,target)
{
		
		params=Form.serialize(form);
		var myAjax = new Ajax.Updater(target, url, {
		method: 'post',
		evalScripts: true,
		parameters: params,
		onSuccess: function() {},
		onComplete: function() {}
	
	});
}
