// JavaScript Document
function chgurl(tempurl){
	if (tempurl != ""){
		window.open(tempurl,"","")
	}
}
function chgurlself(tempurl){
	if (tempurl != ""){
		location.href = tempurl;
	}
}
