var learn_more_dlg1;
// Creates a basic dialog for learn more
function learn_more1(dlg, hwnd) {
	if(!learn_more_dlg1){ // lazy initialize the dialog and only create it once
		learn_more_dlg1 = new YAHOO.ext.BasicDialog(dlg, {
			modal:true,
			autoTabs:true,
			autoScroll: true,
			resizable: true,
			width:600,
			height:350,
			shadow:true,
			fixedcenter:true,
			//shim:true,
			proxyDrag: true
		});
		learn_more_dlg1.addKeyListener(27, learn_more_dlg1.hide, learn_more_dlg1);
		learn_more_dlg1.addButton('Close', learn_more_dlg1.hide, learn_more_dlg1).focus();
	}
	learn_more_dlg1.show(hwnd);
}
//*********************************************************************************************************************************
var testimonial_01_dlg;
// Creates a basic dialog for learn more
function testimonial01(dlg, hwnd) {
	if(!testimonial_01_dlg){ // lazy initialize the dialog and only create it once
		testimonial_01_dlg = new YAHOO.ext.BasicDialog(dlg, {
			//modal:true,
			autoTabs:true,
			autoScroll: true,
			resizable: true,
			width:500,
			height:350,
			shadow:true,
			//fixedcenter:true,
			shim:true,
			proxyDrag: true
		});
		testimonial_01_dlg.addKeyListener(27, testimonial_01_dlg.hide, testimonial_01_dlg);
		testimonial_01_dlg.addButton('Close', testimonial_01_dlg.hide, testimonial_01_dlg).focus();
	}
	testimonial_01_dlg.show(hwnd);
}
//************************************************************************************************************************************//
var testimonial_02_dlg;
// Creates a basic dialog for learn more
function testimonial02(dlg, hwnd) {
	if(!testimonial_02_dlg){ // lazy initialize the dialog and only create it once
		testimonial_02_dlg = new YAHOO.ext.BasicDialog(dlg, {
			//modal:true,
			autoTabs:true,
			autoScroll: true,
			resizable: true,
			width:500,
			height:350,
			shadow:true,
			//fixedcenter:true,
			shim:true,
			proxyDrag: true
		});
		testimonial_02_dlg.addKeyListener(27, testimonial_02_dlg.hide, testimonial_02_dlg);
		testimonial_02_dlg.addButton('Close', testimonial_02_dlg.hide, testimonial_02_dlg).focus();
	}
	testimonial_02_dlg.show(hwnd);
}// JavaScript Document