addPopup();

function popupVideo( url)
{
	ajax_call('ca=ajax.get_video&url=' + escape(url) + '?hl=en&fs=1&autoplay=1', 'showVideoPopup');
}

function showVideoPopup(result)
{
	initPopup();
	divpop.style.backgroundColor = "#000";
	pop_content.innerHTML = result;
	resizePopup(30);	
}
