<!--Little floating window for mail Registration -->
function resetMailPos(){
	window.onresize = mailPricePos;
	}

function mailPricePos() {
	var pricePos = document.getElementById("mailPrice").style;
	var newXPos = (document.body.clientWidth/2) + 500;
	
	if(pricePos.posTop) {
		// IE
		pricePos.posTop = 420;
		pricePos.posLeft = newXPos;
	} else {
		pricePos.top = 420 + "px";
		pricePos.left = newXPos + "px";
	}
	
}