//
//$().ready(function(){
//    $('.myMenu').buildMenu(
//    {
//      template:'menuVoices.html',
//      additionalData:'',
//      menuWidth:200,
//      openOnRight:false,
//      menuSelector: '.menuContainer',
//      iconPath:'ico/',
//      hasImages:true,
//      fadeInTime:200,
//      fadeOutTime:100,
//      adjustLeft:2,
//      adjustTop:10,
//      opacity:.95,
//      shadow:true,
//      closeOnMouseOut:true,
//      closeAfter:500
//    });
//});


//显示ModalDiv
function showTopModal(width,height,title){
    swidth=width+"px";
    sheight = height+"px";
    //$('#outclose-button').click(); /* 帮助栏 */
    $('#inPoptd').css("height",sheight);
    $('#modalContent').modal({titleString:title,close: false,containerWidth:width,containerHeight:height,zIndex:1000});
}

//设置popIframe页面并显示ModalDiv
function setPopFrameUrl(strUrl,width,height,title)
{
	showTopModal(width,height,title);
    //window.parent.document.all.popFrame.src = strUrl;
    document.getElementById('popFrame').src = strUrl;
}

