// <meta http-equiv="Content-Type" content="text/html; charset=utf-8" //>
// original function --------------------------------------
function openWin(url) {
	window.open(url);
	return false;
}
function openNewWin(url,name){
	window.open(url,name,'width=640px,height=600px,toolbar=no,location=no,status=no,scrollbars=yes');
	return false;
}
function popJump(selOBJ) {
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
	return false;
}

// --- for google analytics 2010.11.12 ---------------------
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3117648-1']);
_gaq.push(['_trackPageview']);

(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

