function changeVisibility(ind) {
	picIndex    = 'pic'+ind;
	picNavIndex = 'picNav'+ind;
	for (i=1; i<=sequenceItems; i++) {
		document.getElementById('pic'+i).style.display='none';
		document.getElementById('picNav'+i).style.display='none';
	}
	ActiveImg1 = activeImages[ind];
	subTitle   = subTitles[ind];
	document.getElementById(picIndex).style.display='block';
	document.getElementById(picNavIndex).style.display='block';
}

function goTo(form){ 
	var myindex=form.formSelect.selectedIndex 
	if (form.formSelect.options[myindex].value !="0"){
		window.location.href=form.formSelect.options[myindex].value;
	} 
}

function goToNewWindow(form){ 
	var myindex=form.formSelect.selectedIndex 
	if (form.formSelect.options[myindex].value !="0"){
		var selectedUrl = "";
		selectedUrl     = form.formSelect.options[myindex].value;
		newWindow(selectedUrl,'PlayMP3',300,100,'no','no','yes','yes','no','no');
	} 
}

function goToVideoWindow(form){ 
	var myindex=form.formSelect.selectedIndex 
	if (form.formSelect.options[myindex].value !="0"){
		var selectedUrl = "";
		selectedUrl     = form.formSelect.options[myindex].value;
		newWindow(selectedUrl,'VIDEO',422,360,'no','no','yes','yes','no','no');
	} 
}

function openBigProduct(url, name, width, height, toolbar, status, scrollbar, resizable, menubar, location) {
	newWindow(url, name, width, height, toolbar, status, scrollbar, resizable, menubar, location);
}