// JavaScript Document
function List_Select(Id_List,Value,Text,Action){

	var Id_Selected_Item;
	Id_Selected_Item=window.document.getElementById(Id_List+'_Value').value;

	window.document.getElementById(Id_List+'_'+Id_Selected_Item+'_Option_Item').className='Se_Option';
	window.document.getElementById(Id_List+'_'+Value+'_Option_Item').className='Se_Option_Selected';

	document.getElementById(Id_List+'_Se_List_Print_Value').innerHTML=Text; 
	document.getElementById(Id_List+'_Value').value=Value;
	document.getElementById(Id_List+'_Text').value=Text;
	new Effect.SlideUp(Id_List+'_List_Option', {duration:0.4});
	
	if(Action){
		eval(Action);
	}
}

function Slide_Effect(List_Opt){
	
	if(window.document.getElementById(List_Opt).style.display=='none'){
		new Effect.SlideDown(List_Opt, {duration:0.4});
	}else if(window.document.getElementById(List_Opt).style.display==''){
		new Effect.SlideUp(List_Opt, {duration:0.4});
	}
}