function wp_gotourl (siteurl) {
	basehref = this.location.href;
	endpos = basehref.indexOf("/", 10);
	baseurl = basehref.substring(0,endpos);
	location.href = baseurl + '/' + siteurl;
}
