/** Generated by js.php */
var Panel = {};

Panel.show = function(panel, url) {
	$$('div.panel').each(function(p) {
		if(p.getAttribute('id') == panel) {
			if(p.hasClassName('panelLoaded') == false) {
				var content = p.getElementsBySelector('.content')[0];
				var f = $(document.createElement('iframe'));
				f.setAttribute('src', url);
				f.setAttribute('frameborder', 'no');
				f.addClassName('coomcoomIframe');
				f.setStyle({height: (document.body.parentNode.clientHeight - 160) + 'px'});
				content.appendChild(f);
				p.addClassName('panelLoaded');
			}
			p.show();
		} else {
			p.hide();
		}
	});
}

