
function init(){
	refcount();
	setupZoom();
}

function refcount(){
	var ct = document.getElementById("ct");
	ct.innerHTML = "<img src=\"http://www.clearunit.com/clearup/php/ccounter.php?ref="+top.document.referrer + "\" border='0' width=\"1\" height=\"1\" />";
}

function showhide(ids){
	obj = document.getElementById(ids);
	
	if( obj.style.display == "" ) obj.style.display = "block";
	else obj.style.display = "";
}

