var suggest_ff_top = 56;
var suggest_ff_left = 542;
var suggest_ie_top = 56;
var suggest_ie_left = 543;
var suggest_width = 251;
window.se_offset_top = 20;
window.se_offset_left = 0;
window.se_offset_width = 80;

function get_autorow_window_html() {
    return '<div style="position: absolute; z-index:100; top:' + suggest_ff_top + 'px; left:' + suggest_ff_left + 'px; width:200px;" id="menupopup">' + "\n" + 
            '<table id="ptable" width="' + suggest_width + '" border="0" cellpadding="0" bgcolor="#000000" cellspacing="1" style="visibility:hidden">'  + "\n" + 
            '  <tr>' + "\n" + 
            '    <th bgcolor="#FFFFFF" scope="row">' + "\n" + 
            '         <table id="names" width="100%" border="0" cellpadding="0" cellspacing="0">' + "\n" + 
            '           </table>' + "\n" + 
            '   </th>' + "\n" + 
            '  </tr>' + "\n" + 
            '</table>' + "\n" + 
            '<iframe style=" display:none; top:0; left:10px; width:' + suggest_width + 'px; position: absolute; z-index:-2; " src="about:blank" frameBorder=0 scrolling=no id="suggestbg">' + "\n" +
            '</iframe>' + "\n" +             
            '</div>';
}

function attrshow(id)
{
	var mainid = 'id_'+ id;
	var attid  = 'att_' + id;
	var img = document.getElementById(mainid);
	var attid = document.getElementById('att_'+id).style.display;	
	if(img.src.search('_normal.gif')!=-1)
	{		
		var img_regexp = new RegExp('_normal' + '\\.gif$');
		var img_re = '_select.gif'; 
		img.src = img.src.replace(img_regexp, img_re);
		document.getElementById('att_'+id).style.display="block";
//		new Effect.toggle(attid);
	}
	else
	{
		var img_regexp = new RegExp('_select' + '\\.gif$');
		var img_re = '_normal.gif'; 
		img.src = img.src.replace(img_regexp, img_re);
		document.getElementById('att_'+id).style.display="none";
//		new Effect.SlideUp(attid);
	}
}
