
/** adminfilebrowser.js **/

function CategorySponsorFileBrowser(sponsorId, target) {
	FileBrowser.open('xajax_selectCategorySponsor(\'' + sponsorId + '\', \'' + target + '\', \'{FileId}\');');
}

// facebook.js

var FBook = { 


logout: function() {
 FB.Connect.logout(function() { xajax_logout(); });
},


facebook_onload: function(already_logged_into_facebook) {
  FB.ensureInit(function() {
      FB.Facebook.get_sessionState().waitUntilReady(function(session) {
          var is_now_logged_into_facebook = session ? true : false;

          if (is_now_logged_into_facebook == already_logged_into_facebook) {
            return;
          }
          xajax_loginFacebookConnect();
        });
    });
}, 


facebook_onlogin_ready: function() {
  xajax_loginFacebookConnect();
},

refresh_page: function() {
  document.location = document.location;
},

facebook_prompt_permission: function(permission) {
  FB.ensureInit(function() {
    FB.Connect.showPermissionDialog(permission);
  });
},

facebook_publish_feed_story: function(form_bundle_id, template_data) {
  // Load the feed form
  FB.ensureInit(function() {
      FB.Connect.showFeedDialog(form_bundle_id, template_data);
      ge('feed_loading').style.visibility = "hidden";
  });
},

facebook_show_feed_checkbox: function() {
  FB.ensureInit(function() {
      FB.Connect.get_status().waitUntilReady(function(status) {
          if (status != FB.ConnectState.userNotLoggedIn) {
            checkbox = ge('publish_fb_checkbox');
            if (checkbox) {
              checkbox.style.visibility = "visible";
            }
          }
        });
    });
}

}


/****

inputbox.js

Once DOM is loaded, searches for inputs with the class 'focus', then extends onfocus and onblur as follows:

If a textfield or textarea has a default value, this function will clear the input on focus,
and restore the value if focus is lost and the input has an empty value.

If the default value is 'Password' it will destroy the text input and replace it with a 
Password input with the same id, classes and parent node, and will restore if focus is lost and value is empty

****/
var inputs = {
	init : function() {
		inputs.attachFocus($$("input.focus"));
	},
	attachFocus : function(sfEls){
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onfocus=function() {inputs.txtInputOnFocus(this,this.defaultValue);}
		}
	},
	txtInputOnFocus : function(txtInput,str){
		if(txtInput.hasFocus){return;}
		txtInput.hasFocus=true;
		if(str=='Password'&&txtInput.value==str){
			txtInput=inputs.swapInputType(txtInput,str);
		}
		if(txtInput.value==str)txtInput.value='';
		txtInput.className+=" hasfocus";
		txtInput.onblur = function(){
			if(txtInput.value==''){
				if(txtInput.type=='password')txtInput=inputs.swapInputType(txtInput,str);
				txtInput.value=str;
			}
			$(txtInput).removeClassName("hasfocus");
			txtInput.hasFocus=false;
		}
	},
	swapInputType : function(txtInput,str){
		var newInput = document.createElement('input');
		if(txtInput.type=='password')newInput.type='text';
		else newInput.type='password';
		newInput.name = txtInput.name;
		newInput.value = txtInput.value;
		newInput.id = txtInput.id;
		newInput.className = txtInput.className;
		objParent=txtInput.parentNode;
		objParent.replaceChild(newInput,txtInput);
		newInput.onfocus = function (){inputs.txtInputOnFocus(newInput,str)};
		newInput.hasFocus=false;
		window.newInput = newInput;
		newInput.onblur = function(){
			if(newInput.value==''){
				if(newInput.type=='password')newInput=inputs.swapInputType(newInput,str);
				newInput.value=str;
			}
			newInput.hasFocus=false;
		}
		setTimeout("newInput.hasFocus=true;newInput.focus();",1);
		return newInput;
	}
}
document.observe("dom:loaded", inputs.init);

function swapRadios(elm,state){
	var frm = $('frm_customiser');
	for(i=0;i<frm.elements.length;i++){
		if(frm.elements[i].name==elm)frm.elements[i].disabled=state;
	}
}

// max-chars.js

function maxchars(element) 
{ 
   if (element=='Problem') {
   		var counter = 'counter';
   		var limit = 200;
   }
   else {
   		var counter = 'counter2';
   		var limit = 600;
   }
   
   var old = document.getElementById(counter).value; 
   document.getElementById(counter).value=document.getElementById(element).value.length; 
   if(document.getElementById(counter).value > limit && old <= limit) 
   { 
      alert('Too many characters'); 
         if(document.styleSheets) 
         { 
            document.getElementById(counter).style.fontWeight = 'bold'; 
            document.getElementById(counter).style.color = '#ff0000'; 
         } 
   } 
   else if(document.getElementById(counter).value <= limit && old > limit && document.styleSheets ) 
   { 
      document.getElementById(counter).style.fontWeight = 'normal'; document.getElementById(counter).style.color = '#000000'; 
   } 
}

// rotator.js



var trotator;
var func;

function rotate(baseId, counter, max) {
if (!counter) counter=1;
if (counter > 1000) counter=1;

var previndex = (counter-1)%max;
var index = counter%max;
var prevId = baseId + previndex;
var Id = baseId + index;
$(prevId).style.display='none';
$(Id).style.display='block';
counter = counter+1;

func = 'rotate(\'' + baseId + '\', ' + counter + ', ' + max + ')';

trotator=setTimeout(func ,5000);

}

// swfobject.js

/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;


// tt_tooltip.js
tooltip={
init:function(){
$$('body')[0].insert('<div id="user-highlight" style="display:none; z-index: 900;"></div>');
$('user-highlight').absolutize;
$$('.tooltip').each(function(e){
e.observe("click",function(evt){
elm=Event.element(evt);
if(elm.hasClassName('mark')||elm.hasClassName('info'))elm=elm.ancestors()[0];
var tip=elm.up('.tooltip').down('.info');
$('user-highlight').update(tip.innerHTML);
if( typeof( window.innerWidth ) == 'number' ) {
// Non-IE
// $(divPopup).style.position = 'fixed';
$('divDimmer').style.height = document.body.parentNode.scrollHeight + 'px';
$('divDimmer').style.width = document.body.parentNode.scrollWidth + 'px';
$('divDimmer').style.position = 'fixed';
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
// IE 6+ in 'standards compliant mode'
var myHeight = Math.max(document.body.parentNode.scrollHeight, document.documentElement.clientHeight);
var myWidth = Math.max(document.body.parentNode.scrollWidth, document.documentElement.clientWidth);
$('divDimmer').style.height = myHeight + 'px';
$('divDimmer').style.width = myWidth + 'px';
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
// IE 4 compatible (quirk mode)
$('divDimmer').style.height = (document.body.parentNode.scrollHeight-20) + 'px';
$('divDimmer').style.width = (document.body.parentNode.scrollWidth-20) + 'px';
}
$('divDimmer').style.display='block';
$('user-highlight').setStyle({top:String((elm.positionedOffset()['top']-7)+"px"),left:String((elm.positionedOffset()['left']-7)+"px")});
$('user-highlight').appear({duration:0.25});
});
/*e.observe("mouseout",function(evt){
elm=Event.element(evt);
if(elm.hasClassName('mark')||elm.hasClassName('info'))elm=elm.ancestors()[0];
tip=elm.down('.info');
tip.setStyle({display:'none'});
});*/
});
}
};

document.observe("dom:loaded",function(){
tooltip.init();
});

// ticker.js

function ticker_start() {
	var tickerSupported = false;
	TICKER_WIDTH = document.getElementById("TICKER").style.width;
	var img = " ";

	// Firefox
	if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1 || navigator.userAgent.indexOf("Shiretoko")!=-1) {
		document.getElementById("TICKER").innerHTML = "<TABLE  cellspacing='0' cellpadding='0' width='100%'><TR><TD nowrap='nowrap'>"+img+"<SPAN style='"+TICKER_STYLE+"' ID='TICKER_BODY' width='100%'>&nbsp;</SPAN>"+img+"</TD></TR></TABLE>";
		tickerSupported = true;
	}
	// IE
	if (navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1) {
		document.getElementById("TICKER").innerHTML = "<span><DIV  nowrap='nowrap' style='width:100%;'>"+img+"<SPAN style='"+TICKER_STYLE+"' ID='TICKER_BODY' width='100%'></SPAN>"+img+"</DIV></span>";
		tickerSupported = true;

	}
	if(!tickerSupported) {
                document.getElementById("TICKER").outerHTML = ""; 
alert('not supported');
        }
        else {
		document.getElementById("TICKER").scrollLeft = TICKER_RIGHTTOLEFT ? document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth : 0;
		document.getElementById("TICKER_BODY").innerHTML = TICKER_CONTENT;
		document.getElementById("TICKER").style.display="block";
		TICKER_tick();
	}
}

function TICKER_tick() {
	if(!TICKER_PAUSED) document.getElementById("TICKER").scrollLeft += TICKER_SPEED * (TICKER_RIGHTTOLEFT ? -1 : 1);
	if(TICKER_RIGHTTOLEFT && document.getElementById("TICKER").scrollLeft <= 0) document.getElementById("TICKER").scrollLeft = document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth;
	if(!TICKER_RIGHTTOLEFT && document.getElementById("TICKER").scrollLeft >= document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth) document.getElementById("TICKER").scrollLeft = 0;
	window.setTimeout("TICKER_tick()", 30);
}

// tiny-config.js

HtmlContentEditor    = {
mode : "specific_textareas",
editor_selector : "mceEditor",
plugins : "spellchecker",
theme : "advanced",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 :"bold,italic,underline,justifyleft,justifycenter,justifyright,justifyfull,|bullist,numlist,forecolor",
theme_advanced_buttons2 : "fontselect,fontsizeselect,code,link,unlink,spellchecker",
theme_advanced_buttons3 : "",
convert_urls : "false",
relative_urls : "true",
theme_advanced_statusbar_location : "bottom",
theme_advanced_path : false,
theme_advanced_resize_horizontal : false,
theme_advanced_resizing : true,
theme_advanced_styles : "Standard Text=TextStandard;Header 1=header1;Header 2=header2;Header 3=header3;",
cleanup_on_startup : false,
apply_source_formatting : false,
valid_elements : "span[size|color|style],font[face|size|color|style],a[href|target|onclick],p[style|name|align],strong,b,em,i,ul[name],ol[name],li[name],div[align],img[align|src|title|alt|border|align|style]",
extended_valid_elements : "",
width: "100%",
convert_newlines_to_brs: true
};
Tiny.addConfig('HtmlContent',HtmlContentEditor);


// TTFileBrowser.js

function toptipsFileBrowser(target) {



FileBrowser.open('xajax_selectFile(\'{FileId}\', \''+target+'\');');

}


function miniBannersBrowser() {
    FileBrowser.open('xajax_selectPicture(\'{FileId}\');');
}

// twitter.js

function twitThis(url) {
	var message = document.title;
	var brokenstring=message.split('|');
	message = brokenstring[0];
	message = message.substring(0,99);
	url = url.replace('MESSAGE', message);
	window.open(url,'mywindow','width=1024,height=768')
}