function init()
{
window.onresize  = resize;
resize();
}

function resize()
{
if (contentWidth<577) {contentWidth = 577;} 
if (document.body.clientWidth<=(contentWidth+systemColumns)) 
{
	document.getElementById('parent_container').style.width=(contentWidth+systemColumns)+"px";
	if (document.getElementById('resizeable_content')){document.getElementById('resizeable_content').style.width = (contentWidth)+"px";}
}

else
{
	document.getElementById('parent_container').style.width=(document.body.clientWidth)+"px";
	if (document.getElementById('resizeable_content')){document.getElementById('resizeable_content').style.width = (document.body.clientWidth-systemColumns)+"px";}

	}
}

if (navigator.userAgent.indexOf("Opera")>=0)
{
document.write('<style>');
document.write('.footer_01 {width: 200px !important; height: 200px !important; margin-right: 15px !important; }');
document.write('.footer_02 {height: 230px !important; }');
document.write('.input_02 { width: 65px !important; }');
document.write('.menu_corp li { height: 23px; !important; }');
document.write('<\/style>');
} 