// handles frame targeting in links

function bodyTarget(url)
{
	top.body.document.location.href = url;
}
function topTarget(url)
{
	top.document.location.href = url;
}
function newTarget(url)
{
	newWindow = window.open(url);
}