
function getDivSel(isagree,lang,gotolink,pagetoload)
{	
	var url = "/search/responsibility.php";
	var par = "isagree=" + isagree ;
		par += "&lang="+ lang;
		par += "&gotolink=" + gotolink;
		par += "&pagetoload=" + pagetoload;

	var myAjax = new Ajax.Request(
		url, 
		{
			method: 'get', 
			parameters: par, 
			onComplete: function(originalRequest)
			{
				$("agree").innerHTML = originalRequest.responseText;
			}
		});		
}

function submitprivacyform(privacyform)
{
  document.forms['privacyform'].submit();
}


