/*
* This function clears the <div> - fields
* which can contain some content.
* The Parameter contains the id of an element inside the actual document
*/
function clearFields(DocObj)
 {
  document.getElementById(DocObj).innerHTML="";
 }



function show_skype_popup(skypename)
 {
  var xpos=screen.availWidth;
  var ypos=screen.availHeight;
  xpos=xpos/2-100;
  ypos=ypos/2-50;
  show_popup("SkypePopup",xpos,ypos);
  sndReq("1",skypename,"Conn/Connector.php","SkypePopup_Content");
 }
