git-svn-id: http://xe-core.googlecode.com/svn/trunk@350 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-09 01:22:36 +00:00
parent f80f833c31
commit d229240683
4 changed files with 131 additions and 109 deletions

View file

@ -138,12 +138,13 @@ function setFixedPopupSize() {
// url이동 (open_window 값이 N 가 아니면 새창으로 띄움)
function move_url(url, open_wnidow) {
if(typeof(open_wnidow)=='undefined') open_wnidow = 'N';
if(open_wnidow=='Y') {
var win = window.open(url);
win.focus();
} else {
location.href=url;
}
return false;
if(!url) return false;
if(typeof(open_wnidow)=='undefined') open_wnidow = 'N';
if(open_wnidow=='Y') {
var win = window.open(url);
win.focus();
} else {
location.href=url;
}
return false;
}