
var InfoPopups=new Class({Implements:Options,links:null,options:{defaultTarget:'bomcheck_infowin',width:700,height:580,location:false,toolbar:false,menu:false},initialize:function(links,options){this.setOptions(options);this.links=$$(links);this.links.each(function(link){var options=link.get('rel');if(options){options=JSON.decode(options);}
link.addEvent('click',this.showPopup.bindWithEvent(this,[link,options]));},this);},showPopup:function(event,link,options){options=$merge(this.options,options);var target=$pick(link.get('target'),options.defaultTarget);var windowSize=window.getSize();if(options.width=='large'){var width=windowSize.x*0.9;if(width>1024){width=1024;}}else{var width=options.width;}
if(options.height=='large'){var height=windowSize.y*0.9;}else{var height=options.height;}
var left=(windowSize.x-width)/2+window.screenX;var top=(windowSize.y-height)/2+window.screenY;var win=window.open(link.href+'?format=popup',target,'toolbar='+(options.toolbar?'1':'0')+',scrollbars=1,'+'location='+(options.location?'1':'0')+',statusbar=0,'+'menubar='+(options.menu?'1':'0')+',resizable=1,'+'width='+width+',height='+height+'top='+top+',left='+left);win.focus();event.stop();}});