//*******************************************
// ShowLink
//
// Description: This JavaScript function
// displays the 'link' in the 'target' window
//********************************************

function ShowLink(link, target)
{
 window.open(link, target);
}
