<!--

//Pop window
function pop(url,title,w,h) {

window.open(url, "popWindow", 
"status = 1, height = "+h+", width = "+w+", resizable = 0, scrollbars = 0, toolbar = 0")



}


//Video Still/ Player Switcher
function playVider(vidNum){
	var vidPlayId = 'viderPlay' + vidNum;
	var vidStillId = 'viderStill' + vidNum;
	document.getElementById(vidPlayId).style.display = "block";
	document.getElementById(vidStillId).style.display = "none";
}


//-->