function height_window(){
if(window.innerHeight)
return window.innerHeight;
if(document.documentElement.clientHeight)
return document.documentElement.clientHeight;
return (null);
}

function setHeightFix(opject,height)
{		
		document.getElementById(opject).style.height = height  +'px';
}

function getHeight(opject)
{				
		alert(document.defaultView.getComputedStyle(document.getElementById(opject), null).getPropertyValue('height', null));
		return document.getElementById(opject).clientHeight;
}

function setPosition(opject)
{		
		document.getElementById(opject).style.top = 0 - getHeight(opject) +'px';
}

function setHeight(opject)
{		
		document.getElementById(opject).style.height = height_window()-120  +'px';
}

function setHeight1(opject, height)
{
		document.getElementById(opject).style.height = height_window()-height  +'px';
}
