/*-------------------------------------------
	eResize
--------------------------------------------*/
function eResize(strIDs)
{
	var strTheIDs = strIDs.split(",");
	var winW = 630, winH = 460;
	var leftPos = 0;
	var i = 0;

	winW = document.body.clientWidth;

	if(winW >= 990) {
		leftPos = Math.floor(winW/2 - 495);
		for(i=0;i<strTheIDs.length;i+=2)
			document.getElementById(strTheIDs[i]).style.left = leftPos + parseInt(strTheIDs[i+1],10);
	}
	else {
		for(i=0;i<strTheIDs.length;i+=2)
			document.getElementById(strTheIDs[i]).style.left = parseInt(strTheIDs[i+1]);
	}

	for(i=0;i<strTheIDs.length;i+=2)
		document.getElementById(strTheIDs[i]).style.visibility = "visible";
}

/*-------------------------------------------
	wGo
--------------------------------------------*/
function wGo(url)
{
	window.location.href = url;
}
