function getInformation(script,element){
	$('ajax_company_result').innerHTML = '<strong>Loading ...</strong>';
	var obj = new Ajax.Updater(element,script, {
					method: 'post',
					encoding: 'UTF-8',
					parameters: Form.serialize('loginformular'),
					onComplete: function(o){
									if(o.responseText != ''){
										$('ajax_company_result').style.border="1px solid #666";			
										$('ajax_company_result').style.width="230px";
										$('ajax_company_result').style.height="auto";
										$('registercont').style.height="auto";
										new Element.show('ajax_company_result');	
									}
									else{
										if($('registercont'))$('registercont').style.height="330px";	
										$('ajax_company_result').hide();
									}
								}
					});
	/*setTimeout(function(){
						if($('ajax_company_result').innerHTML != ''){
							$('ajax_company_result').style.border="1px solid #666";			
							$('ajax_company_result').style.width="230px";
							$('ajax_company_result').style.height="auto";
							$('registercont').style.height="auto";
							new Element.show('ajax_company_result');	
						}
						else{
							$('registercont').style.height="330px";
							$('ajax_company_result').hide();
						}
						},100);*/
}
