function fnButtonMouseOver( obj )
{
	obj.style.border="1px solid #000000";
	obj.style.backgroundColor="#CCCCCC";
	obj.style.color="#000000";
}

function fnButtonMouseOut( obj )
{
	obj.style.border="1px solid #DF0055";
	obj.style.backgroundColor="#DF0055";
	obj.style.color="#FDFDE3";
}

function fnButtonMouseDown( obj )
{
	obj.style.border="solid #000000 1px";
	obj.style.backgroundColor="#777777";
	obj.style.color="#000000";
}

function fnButtonClick( strLink )
{
	self.document.location.href=strLink;
}

function fnResizeLayer( )
{
	var oElement = document.getElementById( "content" );
	if( oElement ) {
		var iClientWidth = 0;
		if( window.innerWidth ){
			iClientWidth = window.innerWidth - 290;
			oElement.style.width = iClientWidth + 'px';
			iClientHeight = window.innerHeight - 125;
			oElement.style.height = iClientHeight + 'px';			
		} else {
			iClientWidth = document.body.offsetWidth;
			oElement.style.width = iClientWidth - 290;
			iClientHeight = document.body.offsetHeight;
			oElement.style.height = iClientHeight - 125;
		}
	}
}


