var popup;
var play_vid=new Object;
function popup_video(video)
    {
	play_vid.video = video;
	var opts = 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=710, height=395';
    popup = window.open('/videocontainer.html', 'video', opts);
    }

function load_video(pv)
	{
	var vid = document.getElementById('video');
	if (vid)
		{
		vid.innerHTML='<iframe width="660" height="370" src="http://www.youtube.com/embed/'+pv.video+'?autoplay=1" frameborder="0" allowfullscreen></iframe>';
		}
	}
	
function get_vid()
	{
	return play_vid;
	}
