//No frame
<!--
if(top.frames.length > 0)
top.location.href=self.location;
// -->

<!--
// ==============================================
// Random Img Script
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'http://ilix.in/ilix_logo1.jpg'
theImages[1] = 'http://ilix.in/ilix_logo1.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->

/***********************************************
* Bookmark site script
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}

// ==============================================
// countdown
// ==============================================
seconds = 10;

function decreaseTime(){
  document.frm.consubmit.value=seconds;
  document.frm.consubmit.disabled=true;
  seconds--;
  if(seconds<0){
    document.frm.consubmit.value='Continue';
    document.frm.consubmit.disabled=false;
    return true;
  }
  setTimeout('decreaseTime()',1000);
}

window.onload = function() {
  document.frm.consubmit.value=seconds;
  setTimeout('decreaseTime()',1000);
}

// ==============================================
// EXP_COL
// ==============================================
<!--
function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}
//-->


function expcol() {
javascript:animatedcollapse.toggle('myvar');
javascript:animatedcollapse.toggle('myvar2');
}

function expcol_ie() {
switchMenu('myvar');
switchMenu('myvar2');
}

function expcolm() {
javascript:animatedcollapse.toggle('myvar3');
}

function expcolm_ie() {
switchMenu('myvar3');
}
