function TabAttr(PCAppic_Event) {
//alert(PCAppic_Event.value);
		var ApplEvent = PCAppic_Event.value;
		var SplApplEv = ApplEvent.split("|");
		var Event_code = SplApplEv[0];
		var Event_flag = SplApplEv[1];
//alert("PCAppic_Event.options[PCAppic_Event.selectedIndex].text="+PCAppic_Event.options[PCAppic_Event.selectedIndex].text);
		document.Applicationform.PCEvent_Code.value = Event_code;
		document.Applicationform.PCEvent_Type.value = Event_flag;
//alert(Event_flag);		
		document.Applicationform.PCEvent_Desc.value = PCAppic_Event.options[PCAppic_Event.selectedIndex].text;
						
		ElaborTab(Event_flag);

}

function ElaborTab(Ev_Flag) {
	if (Ev_Flag == 1) {
//alert("Small Application");
 		// document.all.item("table_others").className = "invisible";
		// document.all.item("T13").className = "invisible";

		document.Applicationform.action = "services-applications-part";
	}
	else {
//alert("Full Application");
		// document.all.item("table_others").className = "";
		// document.all.item("T13").className = "tab-body";

		document.Applicationform.action = "services-applications-full";
	}
}

