function getWinSize(win)
{
	if(!win) win = window;
	var pos = {x:0,y:0};
	if(typeof win.innerWidth != 'undefined')
	{
		pos.w = win.innerWidth;
		pos.h = win.innerHeight;
	}else if(win.document.body)
	{
		pos.w = parseInt(win.document.body.clientWidth);
		pos.h = parseInt(win.document.body.clientHeight);
	}
	return pos;
} 




function setDeckSpacerHeight()
{
//	var size = getWinSize();
//	alert(size.h);
//	var size = document.getElementById("motherDiv").height;
//	alert(size);
//	document.getElementById("deckspacer").height = size.h+"px";
}