﻿function ToMainPage(){
	window.location.href ='/';
}

function ToClassifyPage(tagtext){
	window.location.href ='/classify/' + tagtext + '/';
}

function ToUserTagPage(username, tagtext){
	window.location.href ='/user/' + username + '/' + tagtext + '/';
}

function ToImagePage(iid){
	window.location.href = '/image/' + iid + '/';
}

function ToHotPage(){
	window.location.href = '/hot/';
}

function ToRegisterPage(){
	window.location.href = '/register/';
}

function ToUserPage(username){
	window.location.href = '/user/' + username + '/';
}

function ToUserPageTag(username, tagtext){
	window.location.href = '/user/' + username + '/#' + tagtext;
}

function ToTagPage(tagtext){
	window.location.href = '/tag/' + tagtext + '/';
}

function ToTagtool(){
	window.location.href = '/tagtool/';
}

function ToAboutGuide(){
	window.location.href = '/guide/about/';
}

function ToSiteGuide(){
	window.location.href = '/guide/site/';
}

function ToPlugInGuide(){
	window.location.href = '/guide/plugin/';
}

function ToTagtoolGuide(){
	window.location.href = '/guide/tagtool/';
}

function ToTagMe(){
	window.location.href = '/tagme/';
}

function ToCollectGuide(){
	window.location.href = '/guide/collect/';
}

function ToShareGuide(){
	window.location.href = '/guide/share/';
}

function doInstallFreePlugIn(){
	window.location.href = 'http://tagtootest.appspot.com/iframe/?url='+window.location.href;
}