function icon_button(type,label,link,parent)
{

	tmp = '<TABLE cellSpacing=0 cellPadding=0 border=0><TR>'+
	      '<TD height=23><IMG alt="" src="' + parent + 'framework/img/button_left.gif" align=middle border=0></TD>'+
	      '<TD height=23><IMG alt="" src="' + parent + 'framework/img/button_'+type+'.gif" align=middle border=0></TD>'+
	      '<TD height=23 background="' + parent + 'framework/img/button_background.gif" noWrap><A CLASS=action href="'+link+'" >'+label+'</A></TD>'+
	      '<TD height=23><IMG alt="" src="' + parent + 'framework/img/button_right.gif" align=middle border=0></TD></TR></TABLE>';
	    document.write(tmp);
}

function button(label,link,parent)
{
tmp = '<TABLE cellSpacing=0 cellPadding=0 border=0><TR>'+
      '<TD height=23><IMG alt="" src="Backlog_file/button_left.gif" align=middle border=0></TD>'+
      '<TD class=button noWrap><A CLASS=action href="'+link+'" >'+label+'</A></TD>'+
      '<TD height=23><IMG alt="" src="Backlog_file/button_right.gif" align=middle border=0></TD></TR></TABLE>';
      document.write(tmp);      
} 
