﻿function show(msg,title,w,h){
    if(!title) title="信息提示";
     if(!w) w=300;
      if(!h) h=60;
    jBox.open('jBoxID2', 'inline', '<p>'+msg+'<p>', ''+title+'', 'width='+w+',height='+h+',center=true,draggable=true,model=true');
}

function addBookmark(title,url) {
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}


function showdiv(divId,title,w,h){
      if(!title) title="信息提示";
     if(!w) w=300;
      if(!h) h=60;
    jBox.open('jBoxID3', 'div',divId, 'width='+w+',height='+h+',center=true,draggable=true,model=true');

}

