function goPULP(url,wx,wy) { //PULPchat launch v1.5c
  var pulp_server="http://pulp1.design215.com/pulpchat/php/default.php"; 
  if (url.indexOf("http://")<0) {url=pulp_server+"?chat="+url}
  var wxMax=screen.width,wyMax=screen.height,wxOffset=(wxMax-wx)/2,wyOffset=(wyMax-wy)/2;
  var win_options='width='+wx+',height='+wy+',screenX='+wxOffset+',screenY='+wyOffset+
  ',top='+wyOffset+',left='+wxOffset+',scrollbars=no,resizable=no';
  if (navigator.userAgent.indexOf("AOL")!=-1) {win_options+=',status'}
  chatWin=window.open(url,'PULPwin',win_options);
}