// JavaScript Document jQuery.noConflict(); jQuery(document).ready(function($) { $('a[rel*=facebox]').facebox({ loading_image : '/javascripts/facebox/loading.gif', close_image : '/javascripts/facebox/closelabel.gif' }) }) function submitJoinList() { document.getElementById('joinlistmessage').innerHTML = ' '; //verify var formObj = new DHTMLSuite.form({ formRef:'joinlistform',action:'/index/ajaxjoinlist',callbackOnComplete:'checkJoinListStatus()',responseEl:'joinlistmessage' }); var status = formObj.submit(); return status; } function checkJoinListStatus() { if(document.getElementById('joinliststatus')) { var status = document.getElementById('joinliststatus').value; if(status == 'true') { window.setTimeout("jQuery.facebox.close()",1500); ; } } } function changeImage() { ajaxLoader2('/index/changerandomimage','randomimagebox'); } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i'; var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); } if (x) { x.onreadystatechange = function() { if (x.readyState == 4 && x.status == 200) { el = document.getElementById(id); el.innerHTML = x.responseText; } } x.open("GET", url, true); x.send(null); } } function ajaxLoader3(url,id) { if (document.getElementById(id)) { var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); } if (x) { x.onreadystatechange = function() { if (x.readyState == 4 && x.status == 200) { el = document.getElementById(id); el.innerHTML = x.responseText+el.innerHTML ; } } x.open("GET", url, true); x.send(null); } } function ajaxLoaderPlain(url,id) { if (document.getElementById(id)) { var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); } if (x) { x.onreadystatechange = function() { if (x.readyState == 4 && x.status == 200) { el = document.getElementById(id); el.innerHTML = x.responseText; } } x.open("GET", url, true); x.send(null); } } function ajaxLoaderPlainUpdate(url,id) { if (document.getElementById(id)) { var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); } if (x) { x.onreadystatechange = function() { if (x.readyState == 4 && x.status == 200) { el = document.getElementById(id); el.innerHTML = x.responseText; ajaxUpdate(); } } x.open("GET", url, true); x.send(null); } }