// ================================
// ::::: Pop-up Press Article :::::
// ================================
function popPress(url) {
	// Initialise Variables
	var iMyWidth, iMyHeight;
	// Create the top left coord for the window
	// Taking window borders and titles into account
	iMyWidth = (window.screen.width / 2) - (300 + 10);
	iMyHeight = (window.screen.height / 2) - (220 + 50);
	var popWin = window.open(url,"popPress","status,height=440,width=600,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
	popWin.focus();
}
// ======================
// ::::: Pop-up Map :::::
// ======================
function popMap(url) {
	// Initialise Variables
	var iMyWidth, iMyHeight;
	// Create the top left coord for the window
	// Taking window borders and titles into account
	iMyWidth = (window.screen.width / 2) - (160 + 10);
	iMyHeight = (window.screen.height / 2) - (150 + 50);
	var popWin = window.open(url,"popMap","status=no,height=300,width=320,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	popWin.focus();
}
