//페이지 파일 이름 가져오기
function GetPageName ()
{
var url=window.location.href;//전체 URL 가져오기
var tmp= new Array();//임시 변수, 분할 문자열 저장
tmp=url .split("/ ");//"/"에 따라 분할
var pp = tmp[tmp.length-1];//마지막 부분, 즉 파일 이름과 매개변수 가져오기
tmp =pp.split("?");/ /별도의 매개변수 및 파일 이름
return tmp[0]}