function GoJump(value) {
	if(value != '-' && value != 'jumpto') {
		document.location = 'blueprints/' + value + '/' ;
	}
}

function GoSort(page, order) {
	document.location = page + order + '/' ;
}

function GoSortSearch(page, order) {
	document.location = page +'/' + order + '/' ;
}

function GoSortStats(page, order) {
	document.location = page +'/' + order + '/' ;
}

function GoSortStatsID(page, order) {
	document.location = page +'/' + order + '/id/' ;
}
function GoAdminJump(value) {
	if(value != '-' && value != 'jumpto') {
		document.location = value ;
	}
}

function GoShopStatsJump(value) {
	if(value != '-' && value != 'jumpto') {
		document.location = value ;
	}
}

function ViewSwitch() {
	var ThumbClass = document.getElementById('ViewSwitchThumb').className ;
	var ListClass = document.getElementById('ViewSwitchList').className ;
	
	if(ThumbClass == 'ViewSwitch') { document.getElementById('ViewSwitchThumb').className = 'ViewSwitch2' }
	else { document.getElementById('ViewSwitchThumb').className = 'ViewSwitch' }
		
	if(ListClass == 'ViewSwitch') { document.getElementById('ViewSwitchList').className = 'ViewSwitch2' }
	else { document.getElementById('ViewSwitchList').className = 'ViewSwitch' }
}