if ( !$j && typeof( jQuery ) != 'undefined' )
   var $j = jQuery.noConflict();

function buildNotifySend( url, thisurl ) {

   var emailfrom = document.getElementById("nfo_emailfrom").value;
   var emailto = document.getElementById("nfo_emailto").value;

   if ( emailfrom == "" || emailto == "" ) {
      alert("You must provide the necessary contact information.");
      return false;
   }

   var fullurl = url + "&emfr=" + emailfrom + "&emto=" + emailto + "&turl=" + thisurl;
   perform_Req( fullurl );

}

function ws_Callback_NotifySend(response) {
   var message = response.getElementsByTagName("message")[0].firstChild.data;
   document.getElementById("notifyotherfeedback").innerHTML = message;
   window.setTimeout(function () {
		document.getElementById("notifyotherfeedback").innerHTML = "";
		return false;
		}, 2000);
}

