function LayerSpecs(Left,Top,Width) { 
	if(No3) {
		this.left  = Left;
		this.top   = Top;
		this.info  = '';
		var t = Top;
		var link;
		var show_ids;
		var title;
		
		this.info +=  '<table class="tweditor_dropdown_container" cellpadding="0" cellspacing="0">';
		this.info += '<tr>';
		this.info += '<td>';
		this.info +=  '<table cellpadding="0" cellspacing="0">';
		
		for(i=3; i<arguments.length; i++) {
			link = arguments[i];
			i += 1;
			show_ids = arguments[i];
			i += 1;
			title = arguments[i];
			i += 1;
			target = arguments[i];
			
			this.info += '<tr>';
			this.info += '<td class="tweditor_dropdown" ';
			if (target=='')
				this.info += 'onClick="window.location.href=\''+link+'\';" ';
			this.info += 'onMouseOver="this.className=\'tweditor_dropdown_over\';';
			if (show_ids!='')
				this.info += 'Show('+show_ids+');';
			this.info += '" onMouseOut="this.className=\'tweditor_dropdown\';';
			this.info += '">';
			this.info += '<a href="'+link+'"';
			if (show_ids!='')
				this.info += ' onMouseOver="Show('+show_ids+');"';
			if (target!='')
				this.info += ' target="_blank"';
			this.info += '>';
			this.info += title.replace(/^\s*|\s*$/g,"")+'</a>';
			this.info += '</td>';
			this.info += '</tr>';
			t = t + 20;
		}
		this.info += '</table>';
		this.info += '</td>';
		this.info += '</tr>';
		this.info += '</table>';
		id += 1;
	} 
}
