var videoWindow=""

function vidWindow(ID)
{
	if(videoWindow == "" || videoWindow.closed)
	{
		videoWindow = window.open("./vidWindow"+ID+".html","new","height=450,width=660,scrollbars=0")
	}
	
	else
	{ 
		videoWindow.location.href="./vidWindow"+ID+".html"
		videoWindow.focus()
	}
}

var wcvideoWindow=""

function wcvidWindow(ID)
{
	var d = new Date()
	var t = d.getTime()

	if(wcvideoWindow == "" || wcvideoWindow.closed)
	{
		wcvideoWindow = window.open("http://www.webcanvas.ca/lbw/english/vidWindow"+ID+".html?"+t,"new","height=450,width=660,scrollbars=0")
	}
	
	else
	{ 
		wcvideoWindow.location.href="http://www.webcanvas.ca/lbw/english/vidWindow"+ID+".html"+t
		wcvideoWindow.focus()
	}
}