function M(id){
    return document.getElementById(id);
}
function MC(t){
   return document.createElement(t);
};

function month(id)
{
		var i=1;
		for(i=1;i<=12;i++)
		{
			M("Div"+i).style.display="none";
			M("monthshow"+i).className="monthshow";
		}
		M("Div"+id).style.display="";
		M("monthshow"+id).className="monthshow1";
		//M("MonthNum").innerHTML=id;
}
function showSpL(id)
{
	document.getElementById("curSpL").style.display = "none";
	document.getElementById("curSpL1").style.display = "";
	document.getElementById('curSpL1').innerHTML="<p style=\"text-align:center;padding-top:30px;\"><img src=\"images/loading.gif\" /></p>";
	document.getElementById('spclick').src="spclick.aspx?cateid=" + id;
}
function show()
{
	document.all("curSpL").style.display = '';
	document.all("curSpL1").style.display = 'none';
}
function vippictureshow(picpath,showid,piclink)
{
	M("vip"+showid).style.display="none";
	M("vippic"+showid).style.display="";
	M("vippic"+showid).innerHTML="<a href=\""+piclink+"\" target=\"_blnak\"><img src=\""+picpath+"\" width=\"195\" height=\"230\" style=\"border:1px solid #CCCCCC;\" onmouseout=\"javascript:vippicclose('"+showid+"')\"/></a>";
	
}
function vippicclose(showid)
{
	M("vip"+showid).style.display="";
	M("vippic"+showid).style.display="none";
	M("vippic"+showid).innerHTML="&nbsp;";
}

