function openLink (url, target)
{
    if ( target )
    {
	window.open (url, target);
    }
    else
    {
	document.location.href = url;
    }
    return false;
}
