function OpenOffSite(anchor)
{
	var Width = window.screen.width * 0.65;
	var Height = Width * 0.625;

	window.open(anchor.href, "OffSite", "menubar=yes,toolbar=yes,location=yes,directories=yes,scrollbars=yes,resizable=yes,history=yes,width=" + Width + ",height=" + Height).focus();

	return false;
}
