//constants for external link popup dimensions
kw = 700;
kh = 400;

//opens link in new popup
function popUp(o, width, height) 
{
	popupWin = window.open(o.href, '','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height);
	return false;
}

function popTarget(o, width, height, positionx, positiony)
{
	popupWin = window.open(o.href, '','toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,left='+positionx+',top='+positiony+',resizable=1,width='+width+',height='+height);
		
	return false;
}

var popupWin = null;

function popFlash(o, width, height, positionx, positiony)
{
	if(popupWin!=null)
		popupWin.close();
	popupWin = window.open(o.href, '','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,left='+positionx+',top='+positiony+',resizable=0,width='+width+',height='+height);
		
	return false;
}