<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Forum Activity</title>
	<description>Recent Forum Activity</description>
	<link>http://hostcell.net/forum</link>
	<pubDate>Wed, 22 Feb 2012 22:50:14 +0000</pubDate>
	<ttl>60</ttl>
	<item>
		<title>Register .COM Domain Names For $2.00</title>
		<link>http://hostcell.net/forum/index.php/topic/2330-register-com-domain-names-for-200/</link>
		<description><![CDATA[I just registered "articlesontheinternet.com" for $2.00 at <a href='https://www.register.com' class='bbc_url' title='External link' rel='nofollow external'>https://www.register.com</a><br />
 <br />
I don't know how long this promotion will last.]]></description>
		<pubDate>Wed, 22 Feb 2012 22:50:14 +0000</pubDate>
		<guid>http://hostcell.net/forum/index.php/topic/2330-register-com-domain-names-for-200/</guid>
	</item>
	<item>
		<title><![CDATA[it's back... it's different]]></title>
		<link>http://hostcell.net/forum/index.php/topic/2329-its-back-its-different/</link>
		<description><![CDATA[after been along time away my site is back! BUT this time it's not dedicated to motorbikes. This time it's JOKES! (seen as i get loads sent) and be warned some have a adult theme! also see the Disclaimer on the site (thanks again reaper)<br />
 <br />
the URL/Link ... click the sig<br />
 <br />
OH and even tho theres 20 jokes there... i still have loads more jokes to add.]]></description>
		<pubDate>Wed, 22 Feb 2012 21:08:46 +0000</pubDate>
		<guid>http://hostcell.net/forum/index.php/topic/2329-its-back-its-different/</guid>
	</item>
	<item>
		<title>SpinnerChief II Just Released As Beta Use If For Free</title>
		<link>http://hostcell.net/forum/index.php/topic/2328-spinnerchief-ii-just-released-as-beta-use-if-for-free/</link>
		<description><![CDATA[While its in Beta you can use the paid version (or free if you like) for free. The Beta should last maybe a month.<br />
<br />
You can view the video showing all the new features here:<br />
<a href='http://forum.whitehatautomation.com/index.php?topic=853.0' class='bbc_url' title='External link' rel='nofollow external'>http://forum.whitehatautomation.com/index.php?topic=853.0</a><br />
<br />
You can download the Beta version here:<br />
<a href='http://download.spinnerchief.com/spinnerchief2.zip' class='bbc_url' title='External link' rel='nofollow external'>http://download.spinnerchief.com/spinnerchief2.zip</a><br />
<br />
Install instructions:<br />
&#8220;After download, just unzip all files into a normal folder and then run spinnerchief.exe.<br />
<br />
If you want to try free version, just select free version to go and register your email to login.<br />
<br />
If you want to use the paid version, just select paid version to go and register with your name and email and use betaSC2 as paycode to login, you will get authorized automatically at once.&#8221;<br />
<br />
NOTE: If this version is like the first you can&#8217;t move the software to another directory after installing. If you do you&#8217;ll have to re-register, or contact support.<br />
<br />
So, don&#8217;t move it!]]></description>
		<pubDate>Wed, 22 Feb 2012 19:40:20 +0000</pubDate>
		<guid>http://hostcell.net/forum/index.php/topic/2328-spinnerchief-ii-just-released-as-beta-use-if-for-free/</guid>
	</item>
	<item>
		<title>jquery popup</title>
		<link>http://hostcell.net/forum/index.php/topic/2326-jquery-popup/</link>
		<description><![CDATA[hey,<br />
 <br />
ive posted here due to the popups ive seen use this as a main running program whilst html provides some info and css provides the positioning etc. anyhow, just wondering if anyone knows jquery?<br />
 <br />
basically i want a popup disclaimer that loads up when you go to the webpage and to darken (but not too much) the website on the outside whilst the popup is in the middle with a solid dark background. It wants two buttons, one with 'agree' and one with 'disagree' on them.<br />
 <br />
The agree button will let you goto the next page without anymore popups etc. whilst the disagree will take you back to the homepage<br />
 <br />
I'm freaking rusty as hell and input will be good to shake my brains in gear<br />
 <br />
this is what i have so far<br />
<br />
the html file<br />
<pre class='prettyprint'>
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http&#58;//www.w3.org/1999/xhtml" dir="ltr"&gt;
&lt;head&gt;
	&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
	&lt;link rel="stylesheet" href="general.css" type="text/css" media="screen" /&gt;
	&lt;script src="http&#58;//jqueryjs.googlecode.com/files/jquery-1.2.6.min.js" type="text/javascript"&gt;&lt;/script&gt;
	&lt;script src="popup.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;center&gt;
	&lt;div id="button"&gt;&lt;input type="submit" value="Press me please!" /&gt;&lt;/div&gt;
	&lt;/center&gt;
	&lt;div id="popupContact"&gt;
		&lt;a id="popupContactClose"&gt;x&lt;/a&gt;
		&lt;h1&gt;Disclamier&lt;/h1&gt;
		&lt;p id="contactArea"&gt;
			THE TEXT AREA
			&lt;br/&gt;&lt;br/&gt;
			&lt;form&gt;&lt;center&gt;&lt;input type="button" value="Agree" onclick="window.location.herf='http&#58;//northernknights.co.cc/page.php?5'"&gt;
&lt;input type="button" value="Disagree" onclick="window.location.herf='http&#58;//northernknights.co.cc/index.php'"&gt;&lt;/center&gt;&lt;/form&gt;
		&lt;/p&gt;
	&lt;/div&gt;
	&lt;div id="backgroundPopup"&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre><br />
<br />
the general.css<br />
<pre class='prettyprint'>
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
 tfoot, thead, tr, th, td {
border:0pt none;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
margin:0pt;
padding:0pt;
vertical-align:baseline;
}
body{
background:#fff none repeat scroll 0%;
line-height:1;
font-size: 12px;
font-family:arial,sans-serif;
margin:0pt;
height:100%;
}
table {
border-collapse:separate;
border-spacing:0pt;
}
caption, th, td {
font-weight:normal;
text-align:left;
}
blockquote:before, blockquote:after, q:before, q:after {
content:"";
}
blockquote, q {
quotes:"" "";
}
a{
cursor: pointer;
text-decoration:none;
}
br.both{
clear:both;
}
#backgroundPopup{
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:100%;
width:100%;
top:0;
left:0;
background:#000000;
border:1px solid #cecece;
z-index:1;
}
#popupContact{
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:750px;
width:650px;
background:#000000;
  border:1px solid black;
  opacity:0.8;
border:2px solid #cecece;
z-index:2;
padding:12px;
font-size:13px;
}
#popupContact h1{
text-align:center;
color:#6FA5FD;
font-size:22px;
font-weight:700;
border-bottom:1px dotted #D3D3D3;
padding-bottom:2px;
margin-bottom:20px;
}
#popupContactClose{
font-size:14px;
line-height:14px;
right:6px;
top:4px;
position:absolute;
color:#6fa5fd;
font-weight:700;
display:block;
}
#button{
text-align:center;
margin:100px;
}
</pre><br />
<br />
and the .JS file<br />
<br />
<pre class='prettyprint'>
//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	//centering
	$("#popupContact").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
        //Click the button event!
	$("#button").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});

});

</pre><br />
<br />
at the moment you have to press a button for the disclaimer to come up but want it to LOAD when you get on the page. i think (part from knowing the button is in html file and mentioned in the .JS file) that i need to edit the .JS file to load up the popup so that it comes up when you click on the page.<br />
<br />
anyone with any input?]]></description>
		<pubDate>Sun, 19 Feb 2012 21:09:00 +0000</pubDate>
		<guid>http://hostcell.net/forum/index.php/topic/2326-jquery-popup/</guid>
	</item>
	<item>
		<title><![CDATA[Google de-indexed .co.cc, didn't they?]]></title>
		<link>http://hostcell.net/forum/index.php/topic/2325-google-de-indexed-cocc-didnt-they/</link>
		<description><![CDATA[Well, we all know that Google de-indexed all the .co.cc websites. That's the end of it, isn't it?<br />
 <br />
So there is no point whatsover <a href='http://www.google.com/#hl=en&sclient=psy-ab&q=site:*.co.cc&pbx=1&oq=site:*.co.cc&aq=f&aqi=&aql=&gs_sm=3&gs_upl=3433l5261l3l5355l12l7l5l0l0l0l75l438l7l12l0&bav=on.2,or.r_gc.r_pw.r_qf.,cf.osb&fp=ab651cf178b9de65&biw=1600&bih=752' class='bbc_url' title='External link' rel='nofollow external'>clicking here</a> to check that there are no .co.cc websites in the Google index. After all, isn't one definition of insanity that of repeating the same action in the hope of different results?]]></description>
		<pubDate>Sun, 19 Feb 2012 02:50:32 +0000</pubDate>
		<guid>http://hostcell.net/forum/index.php/topic/2325-google-de-indexed-cocc-didnt-they/</guid>
	</item>
</channel>
</rss>
