//$=======================================================================================

//$

//$ MD_Document ( v 1.0 )

//$

//$ © 2002 Michaël Dubois

//$=======================================================================================



function MD_oDocument(){this.PageY = 0;this.PageX = 0;this.BodyWidth = 0;this.BodyHeight = 0;this.Init = MD_DocumentInit;MD_DocumentInit(this);}

function MD_DocumentInit(oDocument){if(!oDocument)oDocument = this;oDocument.PageX = MD_DocumentPageX();oDocument.PageY = MD_DocumentPageY();oDocument.BodyWidth = MD_DocumentWidth();oDocument.BodyHeight = MD_DocumentHeight();}

function MD_DocumentHeight(){  if(GEN_MD_oBrowser.MD_Browser == "NS")return window.innerHeight;else return window.document.body.offsetHeight;}

function MD_DocumentWidth(){if(GEN_MD_oBrowser.MD_Browser == "NS")return window.innerWidth;else return window.document.body.offsetWidth;}

function MD_DocumentPageX(){if(GEN_MD_oBrowser.MD_Browser == "NS")return window.pageXOffset;else return window.document.body.scrollLeft;}

function MD_DocumentPageY(){if(GEN_MD_oBrowser.MD_Browser == "NS")return window.pageYOffset;else return window.document.body.scrollTop;}

