var newWindow;

function openExternalWindow(url)
{
	newWindow=window.open(url,'extWindow');
	if (window.focus){newWindow.focus()}
}
