var _created_windows=[];function boolToYesNo(b){return b?"yes":"no"}
function createWindow(b){var c=null,e="",a={x:-1,y:-1,width:400,height:400,nodups:true,scroll:true,status:false,location:false,menubar:false,toolbar:false,hotkeys:false,fullscreen:false,resize:false,name:"dialog",url:"about:blank"};if(b&&typeof b=="object"){for(var d in b)if(typeof a[d]!="undefined")a[d]=b[d];if(a.nodups&&_created_windows[a.name]){try{_created_windows[a.name].close()}catch(f){}_created_windows[a.name]=null}if(a.x<0)a.x=Math.round((screen.height-a.height)/2);if(a.y<0)a.y=Math.round((screen.width-
a.width)/2);e="top="+a.x+",left="+a.y+",width="+a.width+",height="+a.height+",location="+boolToYesNo(a.location)+",menubar="+boolToYesNo(a.menubar)+",toolbar="+boolToYesNo(a.toolbar)+",hotkeys="+boolToYesNo(a.hotkeys)+",fullscreen="+boolToYesNo(a.fullscreen)+",resizable="+boolToYesNo(a.resize)+",status="+boolToYesNo(a.status)+",scrollbars="+boolToYesNo(a.scroll);c=window.open(a.url,a.name,e);_created_windows[a.name]=c}return c};
