function openWin(url) {
  popUpWin = window.open(url,
                         'HelpWin',
                         'titlebar=0,toolbar=0,location=no,top=30,left=340,directories=0,status=0,'+
                         'menubar=no,scrollbars=0,resizable=no,'+
                         'Height=450,Width=420');
}

function ShowTellAFriend() {
	sFullPath = location.href;
	//newwindow = window.showModalDialog("/tell-a-friend.aspx?page="+sFullPath,"TellAFriend","dialogHeight:400px,dialogWidth:200px,status=no");
	newwindow = window.open("/tell-a-friend.aspx?page="+sFullPath,"TellAFriend","height=400,width=450,status=no");
	newwindow.focus();
}

function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }


function BuildMailTo() {
	sFullPath = location.href;
	return "<A href='#' onClick=javascript:openWin('/tell-a-friend.asp?page="+sFullPath+"')>";
}