// JavaScript Document
// Embedded Popups
var xPos;
var yPos;
function setPos(e) {
	// Gets the position of the mouse click
	if (document.all) {
		xPos = window.event.x + 25;
		yPos = window.event.y + document.body.scrollTop + 5;
	}
	return true;
}
function showpopbox(sName,absX,absY) {
	if (!isNaN(absX) && !isNaN(absY)) {
		// allow for absolutely positioned elements
		xPos = absX;
		yPos = absY;
	}
	// opens the embedded popups
	document.getElementById(sName).style.display = 'block';
	document.getElementById(sName).style.left = xPos + "px";
	document.getElementById(sName).style.top = yPos + "px";
}
function hidepopbox(sName) {
	// Closes the embedded popups
	document.getElementById(sName).style.display = 'none';
}