﻿	// JScript File

var ansStyle;

function openPopup(page,title,largeur,hauteur,scroll) {
	var options = "";
	options = options + "resizable=no";
	options = options + ",scrollbars="+scroll;
	options = options + ",menubar=no";
	options = options + ",toolbar=no";
	options = options + ",directories=no";
	options = options + ",location=no";
	options = options + ",status=no";
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	f = window.open(page,title,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
	f.focus();
}

function Play(elm1)
{
	//alert(elm1);
	openPopup('VideoPlayer.aspx?VideoID='+elm1,'Player',440,360,'no');
}

function Over(elm1)
{
	ansStyle = elm1.style.backgroundColor;
    elm1.style.backgroundColor='#99cc99';
    elm1.style.color='white';
	
}

function Out(elm1)
{
	elm1.style.backgroundColor = ansStyle;
	elm1.style.color='black';
	
	
}
