function walkthrough() {
	window.open("/walkthrough/form1.html", "walkthrough", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=600,z-lock=0,titlebar=1");
}

/**
 * Enough lameness, now with some jquery 
 */
function showHtmlPopup(file, headerTitle, width, height) {
    var options = {
        autoOpen: false,
        title: headerTitle
    };

    if (typeof width != "undefined") {
        options["width"] = width;
    }

    if (typeof height != "undefined") {
        options["height"] = height;
    }

    var $dialog = $("<div></div>").dialog(options).load(file).dialog('open');
}

