/** * ============================================================= * objects.prop * ============================================================= * @package javascript * @author sYoshioka * @copyright COPYRIGHT (C) 2009 JCity Inc., ALL RIGHTS RESERVED. * @version $Id: objects.prop 90 2013-10-11 11:28:28Z yoshsei $ */ var popup_window = Array(); popup_window.push({ url : "/user__/", window_name : "user__", width : 960, height : 700, channelmode : "no", fullscreen : "no", location : "yes", directories : "no", menubar : "no", scrollbars : "yes", status : "yes", toolbar : "no", resizable : "yes", top : -1, left : -1 }); function getProperties(type){ switch(type){ case "popup": if(popup_window.length > 0){ if(!jcity.env.userAgent.ie){ popup_window[0].height = popup_window[0].height + 0; } return popup_window; }else{ return Array(); } break; } return ""; }