<!--
// START COPY THIS WHOLE SECTION
function newWindow(w, h, x, y, j)
{
	IE4 = (document.all);
	NS4 = (document.layers);
	ver4 = (IE4 || NS4);

	var windowWidth = w;
	if(screen.width < windowWidth)
	{
		windowWidth = screen.width;
	}
	var windowHeight = h;
	if(screen.height < windowHeight)
	{
		windowHeight = screen.height;
	}
	var posx = ((screen.width*0.5)-x)-(windowWidth*0.5);
	var posy = ((screen.height*0.5)-y)-(windowHeight*0.5);
	winStats='toolbar=no,location=no,status=no,resizable=yes,menubar=no,scrollbars=yes,width='+windowWidth+',height='+windowHeight+','
	if (document.all && navigator.appVersion.indexOf("Windows", 0) == -1) 
	{ // Mac IE
		if (screen.width <= windowWidth)
		{
			posx = 0;
		}
		if (screen.height <= windowHeight)
		{
			posy = 0;
		}
		winStats+='left=' + posx + ',top=' + posy;
	}
	else 
	if (document.all && navigator.appVersion.indexOf("Windows", 0) != -1) 
	{// PC IE
		if (screen.width <= windowWidth)
		{
			posx = 0;
		}
		if (screen.height <= windowHeight)
		{
			posy = 0;
		}
		winStats+='left=' + posx + ',top=' + posy;
	} 
	else 
	{
		winStats+='screenX=' + this.window.screenX + ',screenY=' + this.window.screenY;
	}
	pitch=window.open(j,"blank",winStats)
	pitch.focus();  
} 
// END COPY THIS WHOLE SECTION
//-->
