// JavaScript Document
	//var thisPaper = 1;
	var myWidth = 0;
	var myHeight = 0;
	var avHgt =  0;		
  	if( typeof( window.innerWidth ) == 'number' )
	{
    	//Non-IE
    	myWidth = window.innerWidth;
    	myHeight = window.innerHeight;
		avHgt=screen.availHeight;
		//alert("Non-IE avHgt = " + avHgt + '\n' + "myWidth = " + myWidth + '\n' + "myHeight = " + myHeight)		
		//alert("container Height = " + document.getElementById("container").offsetHeight;		
  	}
	else if( document.documentElement && ( document.documentElement.clientWidth || document.	documentElement.clientHeight ))
	{
    	//IE 6+ in 'standards compliant mode'		
    	myWidth = document.documentElement.clientWidth;
    	myHeight = document.documentElement.clientHeight;
		avHgt=screen.availHeight;
		//alert("IE6+ myheight = " + myHeight);
		//scnatts()
  	} 
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ))
	{	
    	//IE 4 compatible
    	myWidth = document.body.clientWidth;
    	myHeight = document.body.clientHeight;
		alert("IE4");
  	}

	
/*	
function getInternetExplorerVersion() {
    var rv = -1; // Return value assumes failure.
    if (navigator.appName == 'Microsoft Internet Explorer') {
        var ua = navigator.userAgent;
        var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
        if (re.exec(ua) != null)
            rv = parseFloat(RegExp.$1);
    }
    return rv;
}
    //alert("You're not using Windows Internet Explorer.");
    var ver = getInternetExplorerVersion();	
    if (ver > -1) {

        if (ver >= 8.0)
	           // alert("You're using a recent copy of Windows Internet Explorer.")
			scnatts()
	
        //else
            //alert("You should upgrade your copy of Windows Internet Explorer.")
			//scnatts()
    }   
function scnatts()
{
		var MyScnW=screen.width;
		var MyScnH=screen.height;		
		
}
*/

 


