
function findLivePageHeight() {
	if (window.top.innerHeight != null)
		return window.top.innerHeight; 
	if (window.top.document.body.clientHeight != null)
		return window.top.document.body.clientHeight;
	return (null);
}

function findLivePageWidth() {
	if (window.top.innerWidth != null)
		return window.top.innerWidth;
	if (window.top.document.body.clientWidth != null)
		return window.top.document.body.clientWidth;
	return (null);
}
 


function getPageDim(callPt) { 
    livePageHeight = findLivePageHeight(); 
	livePageWidth = findLivePageWidth(); 
	/* if (callPt == "Pg1-Body")  
 	{  alert('Call Pt. = ' + callPt + "\n" + 'Width = ' + livePageWidth + "\n" + 'Height = ' + livePageHeight);  } */
 	     	     	
 	     	
    if (livePageWidth != null  &&  livePageWidth != null) 
      { 
/*      if (livePageHeight <= 600  ||  livePageWidth <= 800)  */
/*      if (livePageHeight <= 600)    */
        if (livePageWidth > 800)                
          return "High"; 
        else 
          return "Low"; 
       } 
    else 
      return "Low"; 
    }  
    
  