function load_custom(){
	jQuery(".button").button();
	jQuery(".box").addClass("ui-corner-all");
}
function confirm_delete(url,msg,title){
    if(msg==null){
	msg = "Are you sure you would like to delete this?";
	title = "Confirm Delete";
    }
    if(title=="Confirm Location")
	var modal_setting=false;
    else
	var modal_setting=true;
    jQuery("body").prepend("<div id='dialog'><b>" + msg + "</b></div>");
    jQuery("#dialog").dialog({
	title: title,
	modal: modal_setting,
	width: 400,
	buttons: {
	    "Cancel": function() {
		jQuery(this).dialog("close");
	    },
	    "Continue" : function() {
		if(url==""){
		    jQuery("#form_submit").submit();
		}
		else{
		    window.location.replace(url);
		}
	    }
	}
    });
}

