
//----------------------------------------------------------------------------------------------------
//-- Clears the default text from a text box...text box calls funtion onFocus
//----------------------------------------------------------------------------------------------------


function clearTextBox(obj)
{
	obj.value = "";
}


//----------------------------------------------------------------------------------------------------
//-- Forward to a Friend Script
//----------------------------------------------------------------------------------------------------

function mailpage()
{
mail_str = "mailto:?subject=NetworkD "; 
mail_str += "&body=Hello, I thought you might be interested in this  " + location.href; 
location.href = mail_str;
}

//----------------------------------------------------------------------------------------------------
//-- Next Script
//----------------------------------------------------------------------------------------------------