function popup_disclaimer() {
	window.open('http://biz419-36836.innterhost.net/anfrage_renaultde/anfrage_disclaimer.html',
				'popup_disclaimer',
				'width=360,height=400,left=35,top=30,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no');
}


function init() {
	$("#right_box").bind("click", function(event){ 
		$('#registrationForm').show();
		event.stopPropagation();
		event.preventDefault();
	});
	
	$("#hideRegistrationFormLink").bind("click", function(event){ 
		$('#registrationForm').hide();
		event.stopPropagation();
		event.preventDefault();
	});
}


function displayRegistrationForm(e) {
  $('#registrationForm').show();
  e.stopPropagation();
  e.preventDefault();
}

function hideRegistrationForm(e) {
  $('#registrationForm').hide();
  e.stopPropagation();
  e.preventDefault();
}

$(document).ready(function() {
	  init();
});
