<!--
// modified by parth.

function spawn(expr,qty,reversed){
var spawnee=[expr];
for(s=1;s<qty;s++){
spawnee[s]=expr+spawnee[s-1]
}
if(reversed){
return spawnee.reverse()
}else{
return spawnee
}
}

function mw_breadcrumbs(divider,root){
if(!divider) {divider=" : "}
var m=location.toString(),h="";
m=m.substring(m.indexOf("/")+1);
m=m.split("/");
var howmany=spawn("../",m.length,true);
howmany[m.length]="index.html";

for(i=1;i<m.length-1;i++){
var myStr = new String(m[i]);
var RegExp = /-/g;
var newStr = myStr.replace(RegExp," ");
var newStr2 = newStr.toUpperCase();
if(i>1)
	{
	var fc = newStr.substr(0,1);
	var str1 = fc.toUpperCase();
	var str2 = newStr.substring(1,newStr.length);
	var str = str1+str2;
	}
else
	{
	var str = newStr;	
	}	
h+=("<a href="+howmany[i+2]+" class='Path'>"+unescape( str+"</a>"+divider))
}

// splitting the page title with a saperator "-"
var nam = document.title;
var sap = "-";
nam = nam.split(sap);
h += nam[0]; //document.title;

var lhost = location.host;
lhost = lhost.toUpperCase();
//alert(location.host);
if(root) {h=h.replace(eval("/"+location.host+"/"),root)}

return h
}

//-->

copyrightis="<font color='#FFFFFF'>&copy; 2004 - Sonic Technology (India) Inc..</font>";

