// Copyright(C) 2003-2009 GeeKay@CurioCube.com
// All Rights Reserved.

function Exec( mode, nocount ) {
	var strTitle= encodeURI( top.document.title ).replace(" ","+").replace("	","+").replace("&","%26").replace("?","%3f");
	var strLoc = encodeURI( top.document.location ).replace("&","%26").replace("?","%3f");
	var strRef = encodeURI( top.document.referrer ).replace("&","%26").replace("?","%3f");
	var cur = new Date();
	top.document.getElementById("webwing_" + mode).src = "http://www.curiocube.com/__include__/webwing/countup.php?sm=" + mode + "&ttl=" + strTitle + "&req=" + strLoc + "&ref=" + strRef + "&cur=" + cur.getTime() + "&noc=" + nocount;
}

function CountUp( mode ) {
	Exec( mode, 0 );
}

function ShowCount( mode ) {
	Exec( mode, 1 );
}


// EOF

