﻿/// <summary> ==============================================================================================================================
/// 功能：引用 iFrame 頁面 JS Function
/// 版權：茂為科技 MacroWell-www.omg.com.tw
/// 作者：賴豐龍 Alan Lai 2009/02/12
/// _MSN：laifonlon@yahoo.com.tw
/// Mail：alan_lai@macrowell.com.tw
/// </summary>

var sEnCodeUrl = '';
function EnCodeUrl(sUrl)
{
    if(sUrl.indexOf('&') > 0 || sUrl.indexOf('=') > 0 )
    {
        if(sUrl.indexOf('&') > 0)
            sUrl = sUrl.replace("&","@@@");
        if(sUrl.indexOf('=') > 0)
            sUrl = sUrl.replace("=","@_@");
            
        sEnCodeUrl = sUrl;
        
        EnCodeUrl(sUrl);
    }
    else
    {
        return;
    }
}

function SaveUserBrowseHistory(sUserHisCategory, sUserHisTitle, sIdentity, bIsLoadList, bIsSaveList)
{
    EnCodeUrl(top.location.href);
    if(sEnCodeUrl == '')
    {
        sEnCodeUrl = top.location.href;
    }
    
    var oIframe = document.getElementById("UserBrowseHistory");
    if(bIsLoadList == 'False')
    {
        oIframe.height = 0;
    }
    sUserHisCategory = sUserHisCategory.replace(",","，");
    sUserHisTitle = sUserHisTitle.replace(",","，");
    oIframe.src = '/UserData/UserData_iFrame.htm?UserHisCategory=' + escape(sUserHisCategory) + '&UserHisTitle=' + escape(sUserHisTitle) + '&UserHisTopUrl=' + escape(sEnCodeUrl) + '&sUserHisIdentity=' + escape(sIdentity) + '&IsLoadList=' + escape(bIsLoadList) + '&IsSaveList=' + escape(bIsSaveList);
    //alert(oIframe.src);
}