			
			var contactIds = "";
			
			function showContactForm(){
							
				var dheight = $(window).height() * 0.9;
				
				$('#dialog').dialog('destroy');
				$('#dialog').html('<iframe scrolling="auto" frameborder="0" width="100%" height="99%" src="/contactform/Default.aspx?' + contactIds +'"></iframe>')
				//$('#dialog').html('The contact form will deliver the input to the following contact ids: ' + contactIds + '<br><br>Contact form not yet implemented. :-)');
				$('#dialog').dialog({
					autoOpen: true,
					width: 660,
					height: 680,
					hide: 'puff',
					modal: true,
					buttons: {
						"Close": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				return;
			}
						
			
			function showIframeDialog(url, title, width, height){
			
				
				$('#dialog').dialog('destroy');
				$('#dialog').html('<iframe scrolling="auto" frameborder="0" width="100%" height="99%" src="' + url + '"></iframe>')
				//$('#dialog').html('The contact form will deliver the input to the following contact ids: ' + contactIds + '<br><br>Contact form not yet implemented. :-)');
				$('#dialog').dialog({
					autoOpen: true,
					title: title,
					width: width,
					height: height,
					hide: 'puff',
					modal: true,
					buttons: {
						"Close": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				return;
			}
			