function OpenOffSite(anchor)
{
	window.open(anchor.href, "OffSite").focus();

	return false;
}

function OpenPublication(anchor)
{
	var Width = 800;
	var Height = 600;
	
	window.open(anchor.href, "Publication", "resizable=yes,left=" + (screen.width - Width) / 2 + ",top=" + (screen.height - Height) / 2 + ",width=" + Width + ",height=" + Height).focus();
	
	return false;
}