// JavaScript Document
		function jumpPage(newLoc) {
			newPage = newLoc.options[newLoc.selectedIndex].value
	
			if (newPage != "") {
				if (newPage == "http://www.netratings.co.jp/copmany/contact.html" || newPage == "http://www.ibope.com.br/eratings/ogrupo/empresa/eratings/index.htm"){
					conPop = window.open(newPage, 'NetRatings', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=800,height=600,left=50,top=50');
					conPop.focus()
				}else{
					window.location.href = newPage
				}
			}
		}