//POPUP WINDOW
function windowpop(url,targetName,windowWidth,windowHeight) {
// this is not needed, but it sticks it in the middle of the window.
	var horzNew = (screen.width - windowWidth) / 2;
	var vertNew = ((screen.height - windowHeight) / 2) - 36;

// window opener bit
	window.open(url,targetName,'width='+windowWidth+',height='+windowHeight+',screenX='+horzNew+',screenY='+vertNew+',top='+vertNew+',left='+horzNew+',scrollbars=yes');
	}

	// -->
