/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
    
    // Tell jQuery that divId is to be a dialog
    $("#divId").dialog({
        autoOpen: false,
        modal: false,
        height: 500,
        width: 1100
    });
});

function showDialog(url){
    $("#divId").html("<iframe id=\"modalIframeId\" width=\"100%\" height=\"100%\" marginWidth=\"0\" marginHeight=\"0\" frameBorder=\"0\" scrolling=\"yes\" />").dialog("open");
    $("#modalIframeId").attr("src",url);
    return false;
}

function show(id,tf) {
    if (tf == true) {
        id.style.display = "inline";
        id.style.position = "relative";
        id.style.right = "-10px";
    }
    if (tf == false) {
        id.style.display = "none";
    }
}





