// JavaScript Document
			
function externalPage( URL, w ,h , normalWindow, scrollbar ) 
{
	if(!w)w=510;
	if(!h)h=400;
	
	if( normalWindow!=true ) 
	{
		normalWindow = false;
	}
	
	if( scrollbar==undefined ) scrollbar = 1;
	
	if(w<0) w = screen.width;
	if(h<0) h = screen.height;

	var leftPos = (screen.width-w)*0.5, topPos = (screen.height-h)*0.5;
	
	var s = 'toolbar=0,location=0,statusbar=0,menubar=0,resizable=1';
	if(normalWindow) 
	{ 
		s = 'toolbar=1,location=1,statusbar=1,menubar=1,resizable=1'; 
	}
	
	s += ',width='+w+',height='+h+',left='+leftPos+',top='+topPos+',scrollbars='+scrollbar;
	
	exPage = window.open(URL, "popup", s);
	pageTracker._trackPageview(URL);
	
	if(!exPage)
	{
		alert("Please disable pop-up blockers on your web browser to view the link.\n\nAlternatively,\n\nType the following link into a new window:\n\n" + URL);
	}
	else
	{	
		exPage.focus();
	}
}