

function deactivateDialog(url)
{
    var features = "width=500" +
                    ",height=370" +
                    ",directories=0" + 
                    ",location=0" + 
                    ",menubar=0" + 
                    ",scrollbars=0" + 
                    ",status=0" + 
                    ",toolbar=0" + 
                    ",resizable=0";

    window.open( url, "DeactivateAccount", features );

} 

function customDialog(url, name)
{
    var features = "width=500" +
                    ",height=370" +
                    ",directories=0" + 
                    ",location=0" + 
                    ",menubar=0" + 
                    ",scrollbars=0" + 
                    ",status=0" + 
                    ",toolbar=0" + 
                    ",titlebar=0" + 
                    ",resizable=0";

    window.open( url, name, features );

}

function popUp(url, name, width, height)
{
    var features = "width=" + width +
                    ",height=" + height +
                    ",directories=1" +
                    ",location=1" +
                    ",menubar=1" +
                    ",scrollbars=1" +
                    ",status=1" +
                    ",toolbar=1" +
                    ",titlebar=1" +
                    ",resizable=1";

    window.open( url, name, features );

}