// JavaScript Document
// Pop-up Window Generator
// Michael Vance 20/4/05
var newwindow;
function popup(url,height,width,scrolla)
{
	newwindow=window.open(url,'name','height=' + height + ',width=' + width + ',scrollbars=' + scrolla);
	if (window.focus) {newwindow.focus()}
}
