// JavaScript Document




function changeSize()
{
	var iframe = $('immoframe');
//	var right = $('right');
	var height = window.getSize()['size']['y'] - 175;
	if(height<=388) height=388;
//	var totalheight = height + 67;
	if (iframe) iframe.setStyle('height', height + 'px');
//	if(right) right.setStyle('height', totalheight + 'px');

	var width = window.getSize()['size']['x'] - 320;
	if(width<=650) width=650;
//	var totalwidth = width + 67;
	if (iframe) iframe.setStyle('width', width + 'px');
//	if(right) right.setStyle('width', totalwidth + 'px');
}

window.addEvent('domready', changeSize);
window.addEvent('resize',  changeSize);