var src;
var parWin = window.parent.mainFrame;
var sel = 0;
function chgImg(id){
	if(id != sel){
		if (!window.parent.botFrame.sound) window.parent.topFrame.location = 'sound.htm';
		parWin.document['picture'].src = 'gifs/void.gif';
		if (document.all) parWin.document.all['comment'].innerHTML = labelArray[id];
		src = "img/pic_" + idArray[id] + ".jpg";
		setTimeout('imgChange()',200);
		sel = id;
	}
}
function imgChange(){
	parWin.document['picture'].src = src;
}
function playSound(id){
	x = window.parent.botFrame.sound;
	document['sound'].src = 'gifs/sound_' + (1-x) + '.gif';
	if(x!=0){
		window.parent.botFrame.location = 'sound_' + id + '.htm';
	}
	else window.parent.botFrame.location = 'nosound.htm';
}
function setTheme(id,section){
	window.parent.browseFrame.location = "index.cfm?MODE=2&THEME=" + id + "&SECTION=" + section;
}
function resetFrame(){
	window.parent.browseFrame.location = "buffer.htm";
}
function changeSound(id){
	x = window.parent.botFrame.sound;
	if(x==0){
		window.parent.botFrame.location = 'sound_' + id + '.htm';
	}
	window.location = "index.cfm?MODE=1&SECTION=" + id;
}