// ***
// Resizes and centers a modal dialog on screen. For use in window_onload
// ***
function resizeCenterModalDialog(width,height)
{
top = (screen.height-height)/2;
left = (screen.width-width)/2;
window.dialogHeight=height + 'px';
window.dialogWidth=width + 'px';
window.dialogTop=top + 'px';
window.dialogLeft=left + 'px';
}
thanks man and your blog is very nice....
ReplyDelete