// JavaScript Document
function decision(){
	thisUrl = window.location.href;
	alert("asdf");
}
window.onload = function(){
	decision();
}