﻿/*
Powered By GlobeTour
http://QQCampus.org
*/
function hide(id,sh){
	document.getElementById(id).style.display='none';
	sh.className="hide"
}
function showhide(id,sh){
try{
if(document.getElementById(id)){
if(document.getElementById(id).style.display=='none'){
	document.getElementById(id).style.display='block';
	sh.className="show"
}else{
	document.getElementById(id).style.display='none';
	sh.className="hide"
}
}
}catch(e){}
}
//Powered By GlobeTour http://QQCampus.org
