

function msglight(variable){

	var instance=document.getElementById('msg_'+variable);

		if ( (instance)&&(instance.bgColor) )
		{
			instance.bgColor=(instance.bgColor=='#ffffff')?'#f7f7f7':'#ffffff';
		}

}

function move_quote(name,variable){

/*
var instance=document.getElementById(name +'_'+variable).firstChild;

if(instance && instance.nodeValue)
 {
var form_value=document.newthread.elements['message'].value;
document.newthread.elements['message'].value=form_value+'[quote]'+instance.nodeValue+'[/quote]';

 
 }
*/

var instance=document.getElementById(name +'_'+variable).innerHTML;

if(instance)
 {
var form_value=document.newthread.elements['message'].value;
document.newthread.elements['message'].value=form_value+'[quote]'+instance+'[/quote]';

 
 }


}