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

	var newWindow = window.open(href, windowname, 'width=400,height=200,scrollbars=yes,resizable=no,dependent=yes,left=200,top=200');
	newWindow.focus();
	return false;

}
