Ext.onReady(function(){
});
// create Ext window
function extProfView(wmo,prof,type,flag,clim){
var Title=wmo + '_' + prof;
/*
if(type==0){
var Html='';
}else if(type==1){
var Html='';
}else if(type==2){
var Html='';
}
*/
if(type==0){
var Html='';
}else if(type==1){
var Html='';
}else if(type==2){
var Html='';
}
var win = new Ext.Window({
title:Title,
width:475,
height:590,
layout: 'fit',
autoDestroy:true,
plain:false,
closeAction:'hide',
collapsible:false,
resizable:false,
constrain:true,
deferredRender:true,
items: [{
autoScroll:true,
html:Html
}]
});
win.show();
}