var mX = 0;
var mY = 0;

function showGCStep(id)
{

	document.getElementById("googleCheckOutPop"+id).style.display = "block";
	document.getElementById("googleCheckOutPop"+id).style.left = mX + "px";
	document.getElementById("googleCheckOutPop"+id).style.top = mY + "px";
}

function hideGCStep(id)
{
	document.getElementById("googleCheckOutPop"+id).style.display = "none";
}





//Firefox
function UpdateCursorPosition(e){ mX = (e.pageX+70); mY = (e.pageY-150);}
//IE and Opera
function UpdateCursorPositionDocAll(e){ mX = (event.clientX+50); mY = (event.clientY+150);}

if(document.all) { document.onmousemove = UpdateCursorPositionDocAll; }

else { document.onmousemove = UpdateCursorPosition; }
