// JavaScript Document
function Dimentions()
{
    var t3;
        if (window.innerHeight) t3 = window.innerHeight;
            else if (document.documentElement.clientHeight) t3 = document.documentElement.clientHeight;
                else if (document.body.clientHeight) t3 = document.body.clientHeight;
                    else t3 = 600;

	var t4;
    	if (window.innerHeight) t4 = window.innerWidth;
        	else if (document.documentElement.clientWidth) t4 = document.documentElement.clientWidth;
            	else if (document.body.clientWidth) t4 = document.body.clientWidth;
                 	else t4 = 800;

	var t2=new Array();
	t2["height"]=t3;
	t2["width"]=t4;
	return t2;
}
function tallbotBodyDim()
{
	var ref=document.getElementById('tallbotBody');
	var w=ref.style.width.replace('px','');
	var h=ref.style.height.replace('px','');
	var Result=new Array();
	Result['height']=h*1;
	Result['width']=w*1;
	return Result;
}
