프로그래머의 삶 Programmer's Life/Web&WAS

조그마한 창 띄우기~(ex 우편번호찾기라던가 아이디중복확인이라던가~)

Oliver's World 2008. 11. 5. 11:01
728x90

function SearchPost(){
 window.open("zipfindViewClient.do","우편번호","toolbar=no ,width=500 ,height=300 ,directories=no,status=yes,scrollbars=yes,menubar=no");
 
 return true;
}

function Idcheck(){
 window.open("idCheckViewClient.do?check=y","아이디중복확인","toolbar=no ,width=350 ,height=200 ,directories=no,status=yes,scrollbars=yes,menubar=no");
 
 return true;
}

728x90