function GoBack(){
	setTimeout("GoBackStart()", 2000);
}

function GoBackStart(){
   history.back();
}

function ConFirm(msg, url){
	OK_Return = confirm(msg);
	if(OK_Return == true){
		document.location.href=url;
	}
}

function cp(url){
	location.href = "/"+url+"/";
}
