// JavaScript Document
function videoPopUp(id,width,height) {
	if (!width) { width = 640; }
	if ( !height ) { height = 480; }
	window.open("video.aspx?id="+id, "video","width="+width+",height="+height+",resizable=1");
}