// JavaScript Document
function resetForm(formid)
{
	$(formid).reset();
	$('q2','q3').invoke('hide');
	$('server_reply').show();
	$('server_reply').innerHTML = '';
	$('q1').show();
	
}


function callAJAX(formid, boxid)
{
	// call prototype AJAX updater function
	// update the boxid element with response
	$('server_reply').show();
	$('server_reply').innerHTML = '<br/><img src=\'images/ani_sml.gif\' align="middle"/> <h3>processing your submission...</h3>';
	new Ajax.Updater(boxid, 'attribo_req.php5', {   
		parameters: $(formid).serialize()
	 }); 		
}

function setPop(elemid, linkid)
{	

	var images=new Array();
	images[0]=["images/ttl_bg.png"];
	
	TagToTip(elemid, ABOVE, false,			 		   
					//  BGIMG ,'images/ttl_bg_lt.png',
					  WIDTH, 200,
					//  HEIGHT ,280,
					  JUMPHORZ , true,
					  BGCOLOR , 'transparent',
					  BORDERWIDTH , 0,
					  FOLLOWMOUSE , false,
					  STICKY, true,
					  CLICKCLOSE, true,
					  SHADOW,false, 
					  FIX, [linkid, -2, -1]);

}

function setPopTop(elemid, linkid)
{	

	var images=new Array();
	images[0]=["images/innerpanel.png"];
	
	TagToTip(elemid, ABOVE, false,			 		   
					  BGIMG ,'images/innerpanel.png',
					  WIDTH, 230,
					  HEIGHT, 80,
					  JUMPHORZ , true,
					  BGCOLOR , 'transparent',
					  PADDING, '5',
					  BORDERWIDTH , 0,
					  FOLLOWMOUSE , false,
					  STICKY, true,
					  CLICKCLOSE, true,
					  SHADOW,false,
					  FIX, [linkid, -5, -245]);
}

function setRowStyle(rid)
{
	$(rid).style.fontWeight='bold';
	$(rid).style.backgroundColor ='#f5f5f5';
	$(rid).style.color='#333';
}
function resetStyle(rid)
{
	$(rid).style.fontWeight='normal';
	$(rid).style.color='#ccc';
	$(rid).style.backgroundColor='transparent';
}
