var checkScreenWidth = 1280;
var checkScreenHeight = 1024;

var overwriteElementStyle = 'site';

function overWriteStyle() {
	wheight = window.innerHeight; //top.document.body.clientHeight;
	wwidth = window.innerWidth; //top.document.body.clientWidth;
	obj = document.getElementById(overwriteElementStyle);
	
	if(wwidth < checkScreenWidth)
	{
		obj.style.position = "absolute";
		obj.style.left = "20px";
		obj.style.marginLeft = "0px";

	}
}

function checkScreenSolution() {
	sheight = screen.height;
	swidth = screen.width;
	
	overWriteStyle();
}