
function ShowFactSheet(url)
{
    if (window.showModalDialog) {
        window.open(url, '_blank', 'width=700px,height=600px,scrollbars=yes,status=no,help=no,resizable=no,center=yes');
    }
    else {
        window.open(url, '_blank', 'width=700px,height=600px,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
    }
}

