function openwindow(address)
{
 window.open(address,"viewer","location=no,status=yes,scrollbars=no,resizable=no,width=800px,height=400px")
}
function popWin(where,wide,high){
window.open(where,'newWin','width='+wide+',height='+high+',top=100,left=100,status=yes,scrollbars=no')
}

function video(id){
loC = "http://www.seattlechannel.org/videos/video.asp?ID="+id
//alert (loC)
window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=no,width=800px,height=400px")
}

function videoContent(id){
loC = "http://www.seattlechannel.org/videos/video.asp?ID="+id+"&content=1"
window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=no,width=800px,height=400px")
}

function newVideo(program){
loC = "http://www.seattlechannel.org/videos/video.asp?program="+program
window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=yes,width=800px,height=400px")
}

function videoStart(id,starttime){
loC = "http://www.seattlechannel.org/videos/video2.asp?ID="+id+"&start="+starttime;
window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=yes,width=800px,height=400px")
}

function startVideo(id,file,startTime){
	if(file == "playListOff"){
		loC = "http://www.seattlechannel.org/videos/video2.asp?ID="+id+"&file=1&start="+startTime;	
		window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=yes,width=500,height=540")
	}
	else{
		loC = "http://www.seattlechannel.org/videos/video2.asp?ID="+id+"&start="+startTime;	
		window.open(loC,"viewer","location=no,status=yes,scrollbars=no,resizable=yes,width=800px,height=400px")
	}
	
}
