<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to install Backup Utility in XP Home &#8211; Step by Step Guide</title>
	<atom:link href="http://www.ideologics.co.uk/computer-help/how-to-install-backup-utility-in-xp-home-step-by-step-guide/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ideologics.co.uk/computer-help/how-to-install-backup-utility-in-xp-home-step-by-step-guide</link>
	<description>All About Computers</description>
	<lastBuildDate>Tue, 08 May 2012 17:30:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: How to back up my documents in XP &#8211; Step by Step Guide</title>
		<link>http://www.ideologics.co.uk/computer-help/how-to-install-backup-utility-in-xp-home-step-by-step-guide#comment-41</link>
		<dc:creator>How to back up my documents in XP &#8211; Step by Step Guide</dc:creator>
		<pubDate>Wed, 18 May 2011 02:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.eyeonsilicon.com/?p=259#comment-41</guid>
		<description>[...] using XP Home Edition then you might need to download the package and install it. If so, you can follow this link to do so and then come back here when you&#8217;re [...] </description>
		<content:encoded><![CDATA[<p>[...] using XP Home Edition then you might need to download the package and install it. If so, you can follow this link to do so and then come back here when you&#8217;re [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<div style="height: 65px;">
</div>

<style>
.chatshadow {
-moz-box-shadow: 0px 0px 5px 1px #000000;
-webkit-box-shadow: 0px 0px 5px 1px #000000;
box-shadow: 0px 0px 5px 1px #000000;
}
textarea { font: 10pt Calibri; }
</style>

<div class="chatshadow" style="position: fixed; left: 20px; right: 20px; bottom: 0px;
  border: 4px solid #0080FF; border-bottom: 0px; background: #EEEEEE; font: 9pt Calibri; ">
<div style="padding: 5px; color: #000000;">

<div id="chat_update_count" style="float: right; display: none;">0</div>

<div id="chat_div" style="display: none;">

<div style="padding-bottom: 5px; text-align: center;">
Chat room for this page.
<input type="button" value="Close Chat" onclick="closeChat();" style="padding: 4px 8px; font: 9pt Calibri; color: #000000;">
</div>

<div id="chat_log_div" style="height: 150px; overflow: auto; padding: 10px; background: #FFFFFF; border: 1px solid #363636;">
<div id="chat_log" style="font: 9pt Verdana;">
</div>
</div>

<div style="padding-top: 2px; text-align: center;">
<input id="chat_message" style="font: 9pt Verdana; color: #000000; width: 200px; padding: 6px 4px; background: #FFFFFF; border: 1px solid #363636;" onKeyPress="checkChatEvent(event)">
</div>

</div>

<div id="chat_idle_div" style="text-align: center; display: block;">

<b>Are you looking for help?</b> Chat with other visitors here! <span style="padding: 3px; background: #0080FF; color: #FFFFFF; font-weight: 600;">Computer Help Room:</span> <span id="chat_count">There are 16 other people in this room.</span> <input type="button" value="Open Chat" onclick="openChat();" style="padding: 4px 8px; font: 9pt Calibri; color: #000000;"></div>




</div>
</div>

<script>
var chat_on=false,update_count=0;
function openChat() {
  document.getElementById('chat_idle_div').style.display='none';
  document.getElementById('chat_div').style.display='block';
  document.getElementById('chat_message').focus();
  chat_on=true;
  updateChat();
}
function closeChat() {
  document.getElementById('chat_div').style.display='none';
  document.getElementById('chat_idle_div').style.display='block';
  chat_on=false;
}
function updateChat() {
  update_count++;
  document.getElementById('chat_update_count').innerHTML=update_count;

  var xmlHttp;

  xmlHttp=GetXmlHttpObject();
  xmlHttp.onreadystatechange=function() {
    if (xmlHttp.readyState==4) {
      if (chat_on) {
        document.getElementById('chat_log').innerHTML=xmlHttp.responseText;
        chatScroll();
      } else {
        document.getElementById('chat_count').innerHTML=xmlHttp.responseText;
      }
      delete xmlHttp;
    }
  }
  url="/chat_read.php?epoch="+getEpoch()+"&page=computer-help";
  if (chat_on)
    url=url+"&chat_on=1";
  else
    url=url+"&chat_on=0";
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);

}
function getEpoch() {
  return Math.round(new Date().getTime()/1000.0);
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
function resizeForm() {
  var theWidth, theHeight;
  // Window dimensions:
  if (window.innerWidth) {
  theWidth=window.innerWidth;
  }
  else if (document.documentElement && document.documentElement.clientWidth) {
  theWidth=document.documentElement.clientWidth;
  }
  else if (document.body) {
  theWidth=document.body.clientWidth;
  }
  if (window.innerHeight) {
  theHeight=window.innerHeight;
  }
  else if (document.documentElement && document.documentElement.clientHeight) {
  theHeight=document.documentElement.clientHeight;
  }
  else if (document.body) {
  theHeight=document.body.clientHeight;
  }

  document.getElementById('chat_message').style.width=(theWidth-85)+'px';
}

function checkChatEvent(e) {
  var characterCode;

  if (e && e.which) {
    e=e;
    characterCode=e.which;
  } else {
    e=event;
    characterCode=e.keyCode;
  }

  if (characterCode==13) {
    chatSendMessage();
    return false;
  }

}


function chatSendMessage() {
  var t=document.getElementById('chat_message').value;
  var xmlHttp,objDiv;

  document.getElementById('chat_message').value='';

  xmlHttp=GetXmlHttpObject();
  xmlHttp.onreadystatechange=function() {
    if (xmlHttp.readyState==4) {
      if (xmlHttp.status==200) {
        updateChat();
      }
      delete xmlHttp;
    }
  }
  xmlHttp.open("GET","/chat_send.php?epoch="+getEpoch()+"&page=computer-help&message="+encodeURIComponent(t),true);
  xmlHttp.send(null);

}
function chatScroll() {
  document.getElementById('chat_log_div').scrollTop=document.getElementById('chat_log_div').scrollHeight;
}



window.onresize = function(){
  resizeForm();
}

resizeForm();
setInterval('updateChat()',3000);
</script>
