/* 

 getWidth Function
 
 created 19.11.2007
 modified 12.12.2007
 
 copyright 2007 Emotion
 studio of breathtaking ideas
 Mariupol, Ukraine
 www.emotionstyle.com
  
*/


function getWidth()
{
	send = document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
	if(send<=1000)
	{	
		document.getElementById('container').style.width="1000px";
	}else{
		document.getElementById('container').style.width="";
	}
}

function switchDisplay(cid)
{
	if(document.getElementById(cid).style.display=='')
	{
	document.getElementById(cid).style.display='none';
	}
	else
	{
	document.getElementById(cid).style.display='';
	}
	
}