function getWidthTest() {
	var windowWidth = 0;
	if (document.documentElement && document.documentElement.clientWidth)
		windowWidth = document.documentElement.clientWidth;
	else if (document.body)
		windowWidth = document.body.clientWidth;
	if (windowWidth < 800)
		changeCSS ();
}
function getWidth() {
//	var windowWidth = 0;
//	if (document.documentElement && document.documentElement.clientWidth)
//		windowWidth = document.documentElement.clientWidth;
//	else if (document.body)
//		windowWidth = document.body.clientWidth;
//	if (windowWidth < 800)
//		changeCSS ();
	var screenWidth = 0;
	screenWidth = self.screen.width;
	if (screenWidth < 801)
		changeCSS ();
}
function changeCSS () {
	document.getElementById('containerDiv').style.width = '780px';
}
