/*
描述：显示详细信息（类型：1：教师，2：学生），用于一个列表中既有教师又有学生的情况
作者：along
日期：2007-11-7
*/
function showInfo(type,id)
{
    if (type==1)
    {
       openwin("../CJCommon/teacherinfo.aspx?id="+id);
    }
    else
    {
       openwin("../CJCommon/studentinfo.aspx?id="+id);
    }
}

/*
描述：显示详细信息（用于教师，学生，学校，消息）
作者：along
日期：2007-11-7
*/
function openwin(url)
{
    window.open (url, "", "height=550, width=750, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, status=no")
}

/*
描述：显示详细信息（用于课题，资源，作品，报告，动态信息，评选，研讨，BBS等）
作者：along
日期：2007-11-7
*/
function openwin2(url)
{
    window.open (url, "", "height=550, width=700, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no")
}

/*
描述：显示详细信息（用于网站公告）
作者：along
日期：2007-11-7
*/
function openwin3(url)
{
    window.open (url, "", "height=550, width=600, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no")
}

