function recordSession()
{
	var url = '/service.php';
	var pars = "?recordSession="+window.location;
	var myAjax = new Ajax.Request(
	url, 
	{
		method: 'get', 
		parameters: pars, 
		onComplete:function(transport){
		}
	});
}

function recordDSKsession()
{
	var url = '/service.php';
	var pars = "?recordDSKsession="+getQueryString()+"&location="+window.location;
	var myAjax = new Ajax.Request(
	url, 
	{
		method: 'get', 
		parameters: pars, 
		onComplete:function(transport){
		}
	});
}

function getQueryString()
{
	str = location.href;
	sURL = str.substr(str.indexOf('#')+1, str.length);
	return sURL;
}

