﻿$(document).ready(function () {	
	if($(".viewleft").height()<=$(".viewright").height()){
		$(".viewleft").height($(".viewright").height()+50);
	}
});

$(".tab .tab_menu").ready(function () {
    /*选项卡切换*/
    $(".tab .tab_menu span").click(function () {
        $(".tab .tab_menu span").removeClass("on");
        $(this).addClass("on");
        $(".tab_content").hide();
        $(".tab_content").eq($(".tab .tab_menu span").index(this)).show();
    });
});

//弹出对话框
//
function PopupBox(setTitle, setHtml, setWidth, setHeight, isFrame) {
    if (isFrame)
        $.xPopup.init({ title: setTitle, left: '50%', top: '50%', width: setWidth, height: setHeight, drag: true, mask: true, url: setHtml });
    else
        $.xPopup.init({ title: setTitle, left: '50%', top: '50%', width: setWidth, height: setHeight, drag: true, mask: true, html: setHtml });
};
