
function insertMedia()
{
for( var k = 0, l = arguments.length; k < l; k++ )
{
document.write( arguments[k] );
}
}
function insertMedia2( node_id, string )
{
var flashNode = document.getElementById( node_id );
flashNode.innerHTML = string;
}
function CapcabalEvents() {
query = window.location.search;
if ((window.location.pathname.search('events') != -1) &&
(query.search('refID') != -1)) {
if (window.location.host != 'secure.iiid.com'){
window.location =('https://secure.iiid.com/capcabal.net/events.html' +
query);
}
else {
params = query.substr(1).split('&');
for (i = 0; i < params.length; i++) {
pair = params[i].split('=');
if (pair[0] == 'refID') {
expireDate = new Date
expireDate.setDate(expireDate.getDate()-1)
allCookies = document.cookie.split("; ");
for (q = 0; q < allCookies.length; q++){
cookieName = allCookies[q].split("=")[0];
document.cookie = cookieName + "=;expires=" + expireDate.toGMTString();
}
cookieDate = new Date();
cookieDate.setTime(cookieDate.getTime() +
(1000 * 60 * 60 * 24 * 14));
document.cookie = ("capcabal-refID=" + escape(pair[1]) +
";path=/;expires=" + cookieDate.toGMTString());
return;
}
}
}
}
}
function checkSecure() {
query = window.location.search;
if (query.search('refID') != -1) {
if (window.location.host != 'secure.iiid.com'){
window.location =('https://secure.iiid.com/capcabal.net/' +
window.location.pathname +
query);
}
else {
params = query.substr(1).split('&');
for (i = 0; i < params.length; i++) {
pair = params[i].split('=');
if (pair[0] == 'refID') {
expireDate = new Date
expireDate.setDate(expireDate.getDate()-1)
allCookies = document.cookie.split("; ");
for (q = 0; q < allCookies.length; q++){
cookieName = allCookies[q].split("=")[0];
document.cookie = cookieName + "=;expires=" + expireDate.toGMTString();
}
cookieDate = new Date();
cookieDate.setTime(cookieDate.getTime() +
(1000 * 60 * 60 * 24 * 14));
document.cookie = ("capcabal-refID=" + escape(pair[1]) +
";path=/;expires=" + cookieDate.toGMTString());
return;
}
}
}
}
}
function LoadCapcabal() {
MM_preloadImages('images/default_04_over.gif','images/default_05_over.gif',
'images/default_06_over.gif','images/default_07_over.gif',                   'images/default_08_over.gif');
checkSecure();
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
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<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function popup(url, height, width) {
if (!height) {
height = 300;
}
if (!width) {
width = 300;
}
popup = open(url, 'popupWindow',
('height=' + height + ',width=' + width +
',menubar=no,personalbar=no,status=no,titlebar=no,toolbar=no,' +
'screenX=200,screenY=200'));
return false;
}
jQuery.cookie = function(name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
var expires = '';
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
}
var path = options.path ? '; path=' + (options.path) : '';
var domain = options.domain ? '; domain=' + (options.domain) : '';
var secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
} else { // only name given, get cookie
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
};
