﻿// JScript File

function showBorder (name)
{
    var tip = document.getElementById(name); 
    if (tip != null)    tip.style.border = '1px solid #FA9E47';
}


function hideBorder (name)
{
    var tip = document.getElementById(name); 
    if (tip != null) tip.style.border = '';
}


function showBlock(name)
{
    var block = document.getElementById(name); 
    if (block != null)
    {
        block.style.display = "block";
    }
}

function hideBlock(name)
{
    var block = document.getElementById(name); 
    if (block != null)
    {
        block.style.display = "none";
    }
}



//This function is used by the daily content rendering module to get the selected day's content
function getDailyContent(name, day)
{
    var dayControl = document.getElementById(name);
    dayControl.value=day;
     __doPostBack(name.replace(/_/g,'$'),'');  
}

//This function is used by the daily content rendering module to get the selected page's content
function getDailyContentByPage(name, page)
{
    
    var pageControl = document.getElementById(name);
    pageControl.value=page;
    __doPostBack(name.replace(/_/g,'$'),'');  
    
}

function showAllObjective()
{

	document.getElementById("ct_school_objective_detail").style.display = "block";
	document.getElementById("ct_school_objectvie_link").href="javascript:hideObjective();";
	document.getElementById("ct_school_objective_icon").src="http://www.chinesetime.cn/chinesetime/resources/images/school/closeup.jpg";


}

function hideObjective()
{
	document.getElementById("ct_school_objective_detail").style.display = "none";
	document.getElementById("ct_school_objectvie_link").href="javascript:showAllObjective();";
	document.getElementById("ct_school_objective_icon").src="http://www.chinesetime.cn/chinesetime/resources/images/school/opendown.jpg";

}

function ViewMovie()
{
    var width = 366;
    var height = 300;
    var windowFeatures = "toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, height=" + height + ", width=" + width + ", top=" + ((screen.height - height)/2).toString()+",left="+((screen.width - width)/2).toString();
    var vw = window.open ("http://www.chinesetime.cn/chinesetime/pages/shared/movie.aspx?id=" + ViewMovie.arguments[0] , "ChineseTime_Movie", windowFeatures);
    //vw.focuse();
}