/*********************************************************************
 * 处 理 概 要 ：上海惠青计算机软件开发有限公司首页画面迁移
 * 函 数 书 式 ：
 * 作 成 ：2005年09月20日    邵智祺
 * 更 新 ：无
 * Copyright (C) 上海惠青计算机软件开发有限公司
 *********************************************************************/

/* 详细画面的迁移 */
function doSearchNewsDetail(InformationCode)
{
    /* FORM的设定 */
    var thisForm = document.frmDetail;

    /* 新闻编号的设定 */
    thisForm.elements.item("strInformationCode").value = InformationCode;

    /* 迁移画面名称的设定 */
    thisForm.elements.item("strTransferPageName").value = "01huiqing_index";

    /* 设定迁移的画面 */
    thisForm.action = "05huiqing_culture_010202.asp";

    /* 提交 */
    thisForm.submit();
}

function doSearchProductionDetail(ProductionCode)
{
    /* FORM的设定 */
    var thisForm = document.frmDetail;

    /* 新闻编号的设定 */
    thisForm.elements.item("strProductionCode").value = ProductionCode;

    /* 迁移画面名称的设定 */
    thisForm.elements.item("strTransferPageName").value = "01huiqing_index";

    /* 设定迁移的画面 */
    thisForm.action = "04huiqing_production_010101.asp";

    /* 提交 */
    thisForm.submit();
}

function doSearchCaseDetail(CaseCode)
{
    /* FORM的设定 */
    var thisForm = document.frmDetail;

    /* 新闻编号的设定 */
    thisForm.elements.item("strCaseCode").value = CaseCode;

    /* 迁移画面名称的设定 */
    thisForm.elements.item("strTransferPageName").value = "01huiqing_index";

    /* 设定迁移的画面 */
    thisForm.action = "05huiqing_case_010102.asp";

    /* 提交 */
    thisForm.submit();
}
