	function tagLetter (voice, position) {
		var e = document.getElementById(voice);
		var f = document.getElementById(position);
		e.style.border = "solid 1px #9CC";
		e.style.padding = "1px 2px";
		f.style.border = "solid 1px #9CC";
		f.style.padding = "1px 2px";
//		f.className = "active";
//		d.style.backgroundColor = "#FFF";
//		d.style.color = "#333";
	}


function openWin(URL) {
	newWin = window.open(URL,"yantra_win","menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,width=620,height=440");
	if (newWin.opener == null) newWin.opener = window; 
	newWin.opener.name = "asi_main";
	newWin.focus ();
}

function zoomIn(URL,WinName,WID,HEI) {
	WID ? size = "width=" + WID + ",height=" + HEI : size = "width=520,height=300";
	zoom = window.open(URL,WinName,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes, copyhistory=no," + size + ",screenX=150,screenY=150,top=150,left=150" );
	if (zoom.opener == null) zoom.opener = window; 
	zoom.opener.name = "asi_main";
	zoom.focus ();
}

	//preloading images

	zoom_on = new Image();
	zoom_on.src = "/images/icon_zoom_1.gif";
	zoom_off = new Image();
	zoom_off.src = "/images/icon_zoom_0.gif";
	
	more_quotes_on = new Image();
	more_quotes_on.src = "/images/more_quotes_1.gif";
	more_quotes_off = new Image();
	more_quotes_off.src = "/images/more_quotes_0.gif";
	
	learn_on = new Image();
	learn_on.src = "/images/n_learn_1.gif";
	learn_off = new Image();
	learn_off.src = "/images/n_learn_0.gif";
	
	store_on = new Image();
	store_on.src = "/images/n_store_1.gif";
	store_off = new Image();
	store_off.src = "/images/n_store_0.gif";
	
	readings_on = new Image();
	readings_on.src = "/images/n_readings_1.gif";
	readings_off = new Image();
	readings_off.src = "/images/n_readings_0.gif";
	
	about_on = new Image();
	about_on.src = "/images/n_about_1.gif";
	about_off = new Image();
	about_off.src = "/images/n_about_0.gif";

	hlearn_on = new Image();
	hlearn_on.src = "/images/hn_learn_1.gif";
	hlearn_off = new Image();
	hlearn_off.src = "/images/hn_learn_0.gif";
	
	habout_on = new Image();
	habout_on.src = "/images/hn_about_1.gif";
	habout_off = new Image();
	habout_off.src = "/images/hn_about_0.gif";
	
	hbeginner_on = new Image();
	hbeginner_on.src = "/images/hn_beginner_1.gif";
	hbeginner_off = new Image();
	hbeginner_off.src = "/images/hn_beginner_0.gif";

	hstore_on = new Image();
	hstore_on.src = "/images/hn_store_1.gif";
	hstore_off = new Image();
	hstore_off.src = "/images/hn_store_0.gif";

	hreadings_on = new Image();
	hreadings_on.src = "/images/hn_readings_1.gif";
	hreadings_off = new Image();
	hreadings_off.src = "/images/hn_readings_0.gif";

	hadv_on = new Image();
	hadv_on.src = "/images/hn_advanced_1.gif";
	hadv_off = new Image();
	hadv_off.src = "/images/hn_advanced_0.gif";


function imgOn(IMG_ID) {
	document.getElementById(IMG_ID).src = eval(IMG_ID + "_on.src");
}

function imgOff(IMG_ID) {
	document.getElementById(IMG_ID).src = eval(IMG_ID + "_off.src");
}

function link(xSelf,xLinkID){
	document.location.href=xSelf + "?id=" + xLinkID;
}


