
function openVideo(movieName) {
	var url = "videoPlayer.html?movieName=" + movieName;
	var videoWindow = window.open(url,'videoWindow','width=320,height=256,location=no,directories=no,menubar=no,resizable=no,scrollbars=no,toolbar=no,status=no');
    videoWindow.focus();
}

function playTone(clipName) {
		clipName.Play();
}

//Find all link elements and add an onfocus attribute and value
function hideFocusBorders(){
	var theahrefs = document.getElementsByTagName("a");
	if (!theahrefs){return;}
	for(var x=0;x!=theahrefs.length;x++){
		theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
	}
}

hideFocusBorders();

function viewShirt() {
	var url = "tshirt.html";
	var shirtWindow = window.open(url,'shirtWindow','width=490,height=496,location=no,directories=no,menubar=no,resizable=no,scrollbars=no,toolbar=no,status=no');
    shirtWindow.focus();
}