	// JavaScript Document

//$(document).ready(function(){
//
//	$(function() {
//		$("#popup_1").dialog({
//			bgiframe: true,
//			resizable: true,
//			height:140,
//			modal: true,
//			overlay: {
//				backgroundColor: '#000',
//				opacity: 0.5
//			}
//		});
//	});
//
//	
// });



	function toggle(fieldId) {
		var showDiv = document.getElementById(fieldId);
		//var titlebar = document.getElementById("ui-dialog-titlebar");
//		titlebar.style.display = "none";
		$.ui.dialog.defaults.stackfix = true;
	        // increase the default animation speed to exaggerate the effect
        $.fx.speeds._default = 1000;
		$(showDiv).dialog({
			bgiframe: true,
			resizable: true,			
			draggable: true,
			width:800,
			modal: true,
//			overlay: {
//				backgroundColor: '#FF0000',
//				opacity: 0.9
//			},
			buttons: {
				"": function(){
					$(this).dialog('close');
				}
			}/*,
			height: 400,
			show: "blind",
			hide: "blind"*/
		});
		$(showDiv).dialog('open');
		/*$(showDiv).dialog('option', 'show', 'blind');
		$(showDiv).dialog('option', 'hide', 'blind');*/
	}
	
