//  -----=====oooooOOOOO[    Style change function     ]OOOOOooooo=====-----

	var ie4x = (document.all) ? true:false;
	var ns4x = (document.layers) ? true:false;
	var ns6x = ((document.getElementById) && (!ie4x)) ? true:false;

	// if (ie4x || ns6x) document.write('<link rel=\"StyleSheet\" href=\".\/style\/style.css\" type=\"text\/css\">')
	//   else document.write('<link rel=\"StyleSheet\" href=\".\/style\/style_other.css\" type=\"text\/css\">');
	
	function cc() {
		args = cc.arguments;
		for (var i = 0; i < args.length; i += 2) {
			if (ie4x) { document.all[args[i]].className = args[i+1] }
			else if(ns6x) { document.getElementById(args[i]).className = args[i+1] }
		}
	}
	
	function cpic(picName,picSrc) {
		document.images[picName].src = picSrc;
	}

//  -----=====oooooOOOOO[    Layer change function     ]OOOOOooooo=====-----
	
	function clayer() {
		var args = clayer.arguments;
		//i = 0;
		for (var i = 0; i < args.length; i += 2) {
			if (ie4x) document.all[args[i]].style.visibility = (args[i+1] == 'v') ? "visible":"hidden";
			if (ns6x) document.getElementById(args[i]).style.visibility = (args[i+1] == 'v') ? "visible":"hidden";
			else if (ns4x) document.layers[args[i]].visibility = (args[i+1] == 'v') ? "show":"hide";
		}
	}
	
//  -----=====oooooOOOOO[    Other funtion     ]OOOOOooooo=====-----
	
	function JumpToOpener(URL) {
		parent.window.href = URL;
	}
	
	function JumpToURL(URL) {
		document.location.href = URL;
	}
