// JavaScript Document
function switchTab(tab_title, pst, tab_cnt)
{
	for(var i=0 ; i<tab_cnt ; i++)
	{
		if (i == pst)
			document.getElementById(tab_title+'_tab_'+i).className = 'current';
		else
			document.getElementById(tab_title+'_tab_'+i).className = '';
		if (i == pst)
			document.getElementById(tab_title+'_'+i).style.display = '';
		else
			document.getElementById(tab_title+'_'+i).style.display = 'none';
	}
}
function fEvent(sType,oInput,oWidth)
{
	oInput.style.width = oWidth + 'px';
	switch (sType)
	{
	case "focus" :
 		oInput.isfocus = true;
 		oInput.className='inputTxt_focus';
 	break;
	case "blur" :
 		oInput.isfocus = false;
		oInput.className='inputTxt';
 	break;
	} 
}
