function ModalDialogShow(image, title, width, height)
{
   var args = 'width=' + (width + 20) + ',height=' + (height + 20) + ',left=0,top=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0';
   
   ModalDialogWindow = window.open("","",args); 
   ModalDialogWindow.document.open();
   ModalDialogWindow.document.write('<html>');
   ModalDialogWindow.document.write('<head>');
   ModalDialogWindow.document.write('<title>' + title + '</title>');
   ModalDialogWindow.document.write('<style type="text/css">');
   ModalDialogWindow.document.write('body');
   ModalDialogWindow.document.write('{');
   ModalDialogWindow.document.write('background-image: url("' + image + '");');
   ModalDialogWindow.document.write('background-position: center;');
   ModalDialogWindow.document.write('background-repeat: no-repeat;');
   ModalDialogWindow.document.write('height: 100%;');
   ModalDialogWindow.document.write('width: 100%;');
   ModalDialogWindow.document.write('}');
   ModalDialogWindow.document.write('</style>');
   ModalDialogWindow.document.write('</head>');
   ModalDialogWindow.document.write('<body onblur="window.focus();" onclick="window.close()" style="margin: 0px;">');
   ModalDialogWindow.document.write('&nbsp;');
   ModalDialogWindow.document.write('</body>');
   ModalDialogWindow.document.write('</html>');
   ModalDialogWindow.document.close();
   ModalDialogWindow.focus();
}

function ModalDialogShowPage(page, width, height)
{
   var args = 'width=' + width + ',height=' + height + ',left=0,top=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0';
   
   ModalDialogWindow = window.open(page,"",args);
   ModalDialogWindow.focus();
}