// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// this sample structure demonstrates the use of HTML inside the menu items as well as wrapper functions

var MENU_ITEMS = [
	
	['SELECT RADIO', null, null,
		[pupup('<iframe src="myscripts/demo3/htmlmenuradioen.html" style="width:328px; height:343px;"></iframe>'), 'http://www.softcomplex.com'],
	]
];


//	This simple function is a wrapper. It puts html around provided text.
//	You can write your own wrappers for higher efficiency and better code maintanability
function pupup (text) {
	return '<table border=0 width=328 height=343 cellpadding=0 cellspacing=0><tr><td background="wrapradio.gif">'
		+ text + '</td></tr></table>';
}
