function viewprofile(userID) {
	window.open ("emailauthor.php?authid="+userID, "Author", "width=550, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=0, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
}

function viewprofile2(usersn) {
	window.open ("emailauthor.php?sn="+usersn, "Author", "width=550, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=0, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
}

function ajaxFunction(payl)
{
var xmlhttp;
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {
  // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
else
  {
  alert("Your browser is very old and cannot perform this task!");
  }
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  document.getElementById(payl).innerHTML=xmlhttp.responseText;
  }
}
myrand=parseInt(Math.random()*999999);
xmlhttp.open("GET",payl+".php?rand="+myrand,true);
xmlhttp.send(null);
}

function fbpublish4() {
	var love = "<b>" + document.getElementById('lovequotes').innerHTML + "</b>";
	FB_RequireFeatures(["Connect"], function() {
	FB.init("2c37cc39ec5444f17f8c286f2f4c0a2e", "xd_receiver.htm");
   FB.Connect.showFeedDialog(308777690435,{"images":[{"src":"http://tristancafe.com/lovequote.gif", "href":"http://tristancafe.com/forum#lovequote"}],"love":love});
   });
}