///////////////////////////////////
//         ajax im 3.41          //
//    AJAX Instant Messenger     //
//   Copyright (c) 2006-2008     //
//    http://www.ajaxim.com/     //
//   Do not remove this notice   //
///////////////////////////////////


/**
* Class to handle buddylist events
*
* @author Joshua Gross
**/

var myAccordion = null;

var bannerToggleFrequency = 60000;

var AdsServer = {
	AdsServerWin: null,  // buddy list window

	/**
	* Process the creation of the buddy list window
	*
	* @author Joshua Gross
	**/
	
	create: function() {
		
		if(!$('AdsServerBlock')) {
			this.AdsServerWin = new Window({id: 'AdsServerBlock', className: "dialog", width: 180, height: (Browser.height() - 60), zIndex: 1000, resizable: false, minimizable: false,  title: 'Ads', draggable: false, closable: false, maximizable: false, detachable: false, minWidth: 100, minHeight: 150, showEffectOptions: {duration: 0}, hideEffectOptions: {duration: 0}});
			this.AdsServerWin.setConstraint(true, {left: Browser.width()-410, right: 0, top: 0, bottom: 0});
		}
		this.AdsServerWin.getContent().innerHTML= '<iframe style="position: relative; width: 180px; height: 600px; text-align: center;" id="AdsServerContent" name="AdsServerContent" src="http://web.electronicgroups.com/www/delivery/azfzr.php?zoneid=14&amp;cb=1673740938" frameborder="0" scrolling="no"><a href="http://web.electronicgroups.com/www/delivery/czkz.php?n=a6212ba8&amp;cb=318617775" target="_blank"><img src="http://web.electronicgroups.com/www/delivery/azvzw.php?zoneid=14&amp;cb=892575555&amp;n=a6212ba8" border="0" alt="" /></a></iframe>';
		Event.observe(this.AdsServerWin.getContent(), 'contextmenu', function() { return false; });
		this.AdsServerWin.toFront();
		Element.setStyle($('AdsServerContent'), {
			display: 'block',
			zIndex: Windows.maxZIndex + 2000
		      });
		$('AdsServerBlock').style.top = '10px';
		$('AdsServerBlock').style.display = 'block';
		
		setInterval("AdsServer.toggleBanner()",bannerToggleFrequency);
		
	},
	
	/**
	* Destroy the buddy list window
	*
	* @author Joshua Gross
	**/
	
	destroy: function() {
		this.AdsServerWin.destroy();
	},
	
	toggleBanner: function(){
		this.AdsServerWin.getContent().innerHTML = '<iframe style="position: relative; width: 180px; height: 600px; text-align: center;" id="AdsServerContent" name="AdsServerContent" src="http://web.electronicgroups.com/www/delivery/azfzr.php?zoneid=14&amp;cb=1673740938" frameborder="0" scrolling="no"><a href="http://web.electronicgroups.com/www/delivery/czkz.php?n=a6212ba8&amp;cb=318617775" target="_blank"><img src="http://web.electronicgroups.com/www/delivery/azvzw.php?zoneid=14&amp;cb=892575555&amp;n=a6212ba8" border="0" alt="" /></a></iframe>';
	},
	
};
