<!--
document.domain = 'opentags.org';
var ot_uid   = 0;
var ot_uname = '';
var str = '';
var this_url = window.location.toString();
var tags_array = new Array();
var lasttime = new Date(document.lastModified);
var Modif = new Date(lasttime.toGMTString());

//document.write(Modif.toString());

function trim(str){
	return str.replace(/(^\s*)|(\s*$)/g, "");
}

function ltrim(str){
	return str.replace(/(^\s*)/g,"");
}

function rtrim(str){
	return str.replace(/(\s*$)/g,"");
}

function ___encodeURIComponent(str){
	if(typeof(encodeURIComponent) == 'function'){
		return encodeURIComponent(str);
	}else{
		return escape(str);
	}
}

function ___decodeURIComponent(str){
	if(typeof(decodeURIComponent) == 'function'){
		return decodeURIComponent(str);
	}else{
		return unescape(str);
	}
}

function Location(url){
	window.location = url;
}
//-->