function getW(){
	return (typeof window.innerWidth == 'undefined')?document.body.clientWidth:window.innerWidth;
}


function getH(){
	return (typeof window.innerHeight == 'undefined')?document.body.clientHeight:window.innerHeight;
}

	
function resizeDocumentTo(setw,seth) {
	return window.resizeTo(setw,seth);
/*	return window.resizeTo(setw,seth),window.resizeTo(setw*2-((typeof window.innerWidth ==
	'undefined')?document.body.clientWidth:window.innerWidth),seth*2-((typeof window.innerHeight ==
	'undefined')?document.body.clientHeight:window.innerHeight));*/
}

function getLeft(){}
