

function initConfirmationDialog(dialogID){

if($.browser.msie && $.browser.version=="6.0"){

        //alert("Im IE6");
        
    }else{
	    $(dialogID).dialog({
		    bgiframe: true,
		    resizable: false,
		    height:240,
		    modal: true,
		    draggable: false,
		    overlay: {
			    backgroundColor: '#000',
			    opacity: 0.5
		    },
		    buttons: {
			    'Save': function() {
				    $(this).dialog('close');
			    },
			    Cancel: function() {
				    $(this).dialog('close');
			    }
		    }
	    });
	}
}

function initErrorDialog(dialogID){
    alert('here');
	$(dialogID).dialog({
		bgiframe: true,
		height: 140,
		modal: true
	});
}

function initWinDialog(dialogID){
	$(dialogID).dialog({
		bgiframe: true,
		height: 140,
		modal: true
	});
}

function initBasicDialog(dialogID){
	$(dialogID).dialog({
		bgiframe: true,
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
}

