function setWindow()
{
	var height = 180;
	if($('slideshow_holder') != null)
	{
		height = height + 188;
	}
	

	try
	{
		var pl = $('product_left').getHeight();
		var pr = $('product_right').getHeight();
		var cc = $('content_holder').getHeight();
		
		if(pl >= pr) $('left_text').style.height = pl + "px";
		else $('left_text').style.height = pr + "px"; 
	
		if($('left_text').getHeight() > cc) 
		{
			$('content_holder').style.height = ($('left_text').getHeight() + 60) + "px";
			$('content_left').style.height = ($('left_text').getHeight() + 25) + "px";
		}
	}
	catch(error) 
	{
		try
		{
			var cc = $('content_holder').getHeight();
			if($('left_text').getHeight() > cc) 
			{
				$('content_holder').style.height = ($('left_text').getHeight() + 60) + "px";
				$('content_left').style.height = ($('left_text').getHeight() + 25) + "px";
			}
		}
		catch(error) {}		
	}
		
	curHeight = (height+$('content_holder').getHeight());
	
	if(getWindowHeight() > curHeight)
	{
		$('content_holder').style.height = (getWindowHeight()-height-3) + "px";
		$('content_right').style.height = (getWindowHeight()-height-3-30) + "px";
		$('content_left').style.height = (getWindowHeight()-height-3-35) + "px";
	}
	else
	{
		var cr = $('content_right').getHeight();
		var cl = $('content_left').getHeight();
				
		if(cr >= cl) $('content_left').style.height = cr + "px";
		else
		{
			return;
			$('content_right').style.height = (cl-30) + "px";	
		}
	}
}