function weathershow() {
	var readPanel = new Ext.Panel({
			id:'PanelRead',
			name: 'PanelRead',
			xtype: 'panel',
			autoLoad: {url: 'forecast.php',scripts:true},
			layout:'fit',
			defaults: {width: 300, height: 420}
	});

	var win = new Ext.Window({
		layout      : 'fit',
		title		: 'Weather Forecast from Sealinks',
		width       : 318,
		height      : 442,
		closeAction : 'hide',
		plain       : true,
		items		: [readPanel]
	});
	win.show();
}

function greetingshow() {
	var readPanel1 = new Ext.Panel({
			id:'PanelRead1',
			name: 'PanelRead1',
			xtype: 'panel',
			autoLoad: {url: 'greeting.html',scripts:true},
			layout:'fit',
			defaults: {width: 906, height: 439}
	});

	var win1 = new Ext.Window({
		layout      : 'fit',
		title		: 'Seasons Greeting from Sealinks',
		width       : 924, //+18
		height      : 461, //+22
		closeAction : 'hide',
		plain       : true,
		items		: [readPanel1]
	});
	win1.show();
}

