function popup(mylink) {
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, 'image', 'width=700,height=650,scrollbars=yes');
	return false;
}
