$(document).ready(function() {
	
	 // Stats
	 $('#stats').dialog({
	 		width: 630,
			height: 450,
			autoOpen: false,		
			draggable: false,
			resizable: false,
			position: ['center', 'center'],
			zIndex: 200,
			modal: true		
	 });		
		
	 if($('#letter_container').length > 0){
	 		$('#stats').dialog('open');	 		
	 }		
	 
	 // Input Field onfocus leeren
	 $('#tx-mtmnzipsearch-zip').focus(function(){
	 	$(this).val('');
	 });
			
});
