function showNote(tmpUrl,width,height) {
    if(width=='')width =778;
    if(height=='')height =550;
     var left = (screen.width - width)/2;
     var top = (screen.height - height)/4;
     opts = 'status=0,resizable=0,scrollbars=1,left=' + left + ',top=' + top + ',width=' + width + ',height= '+ height +"'";
   // opts = 'left=' + left + ',top=' + top + ',width=' + width + ',height= '+ height +"'";
     window.open(tmpUrl,'showNote', opts);	
}
