﻿window.onload = newWinLinks;



function newWinLinks() {
	for (var i=0; i<document.links.length; i++) { 
	if (document.links[i].className ==
		"newViewWin") {
		document.links[i].onclick =
			newWindow;
			
		}
		

	
	}
		
		
		
}


function newWindow() {
	var videoWindow = window.open(this.href,
		"videoWindow","scrollbars=yes,width=450,height=400");
	videoWindow.focus();
	return false;
	
}

