﻿// JScript 文件


function a(id) {
    return document.getElementById(id);
}

function changeIf1(ifId) {
    if (window.location.search == "" || window.location.search == null) {
        var urlValue = "?ifsrc=Empty";
    }
    else {
        var urlValue = window.location.search;
    }
    a(ifId).src = urlValue.split('=')[1] + '.aspx';
}

function winOpen(url) {
    window.open(url);
    //window.location.href = url;
}
//function getIframePage(obj)
//{

//   var f=document.getElementById("iframeContent");
//   f.style.display="inline";
//   f.src=obj;

//}
