// JavaScript Document
// -----------------------------------------------
// Page Control JS
// 
// -----------------------------------------------

//
// css style control
//
   function fncPageControlChangeSytle(varCssfile) {
	   
	   if( typeof varCssPass == "undefined" ){
		   varCssfile = 'css/'+varCssfile;
		}else{
		   varCssfile = varCssPass+varCssfile;
		}

      document.getElementById('mystyle').href = varCssfile;
   }
   
//
// menu control
//
	
	function fncPageControlChangeMenuSelected(varMenuID){
		objTestCls = new Element.ClassNames(varMenuID);
		objTestCls.add('ankSelected');
//		alert(0);

	}
