function getResolution()
	{
	
	if (typeof(screen) != "undefined" && screen && screen.width) return {width:screen.width,height:screen.height};
	return null;
	checkResolution();
	}
 
function checkResolution()
	{
	
	var resolution = getResolution();
	
	if (resolution.width <= 1023) {
	document.getElementById("leftcol").style.display = "none";
	document.getElementById("wrap").style.width = resolution.width;
	}
	//else if(resolution.width <=1094)
//	{
//	}
	else
	{
	document.getElementById("wrap").style.width = "1024px";

	//document.getElementById("container").style.float = "left";
		
	}
}

