// Open html container for Google video
// Standard dimensions: 410px X 356px
//
////////////////////////////////////////
function openVideo ( videoPath, myWidth, myHeight )
{
	if((!myWidth)&&(!myHeight)) { myWidth=410; myHeight=356; };
	var newWin = window.open(videoPath,'cheersVideo',
                                'height='+myHeight+',width='+myWidth+',location=no,menubar=no,resizable=noscrollbars=no,status=no,toolbar=no');
}