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

This commit is contained in:
zero 2007-03-13 08:51:47 +00:00
parent dee594fb62
commit 62afbadc06
6 changed files with 77 additions and 1 deletions

View file

@ -15,6 +15,14 @@ function isDef() {
return true;
}
// 윈도우 오픈
function winopen(url, target, attribute) {
if(typeof(target)=='undefined') target = '_blank';
if(typeof(attribute)=='undefined') attribute = '';
var win = window.open(url, target, attribute);
win.focus();
}
// 특정 div(or span...)의 display옵션 토글
function toggleDisplay(obj, opt) {
obj = xGetElementById(obj);