<!--
function popup(mylink, imagelink)
{
	var href;
	var newwindow = '';
		
	if (!window.focus)return true;
	
	if (typeof(mylink) == 'string')	href=mylink;
	else		   		href=mylink.href;

	newwindow = window.open(href, 1,'width=520,height=520,scrollbars=no');
	
	if (window.focus) {newwindow.focus()}
	
	return false;
}
//-->