var newwindow;
var videoLinks

function popupA(url)
{
	newwindow=window.open(url,'name','height=600,width=800,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}


function popupB(url)
{
	newwindow=window.open(url,'name','height=325,width=375,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}
function popupC(url)
{
	newwindow=window.open(url,'name','height=310,width=350,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
}

function popupExternal(url)
{
	newwindow=window.open(url,'name','height=400,width=650,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}


function SetVideoPopup()
{
	videoLinks = document.getElementsByTagName("a");
	for (var i=0; i<videoLinks.length;i++)
	{
		if(videoLinks[i].id == "videopopup"){
			videoLinks[i].onclick = new Function("popupC('/videos.aspx?video="+videoLinks[i].href+"'); return false");
		}
	}
}