// common.js source code

var newwindow;
function poptastic(url, width, height)
{
	var h, w, property;
	
	h = "height=" + height;
	w = "width=" + width;
	property = h + "," + w;
	newwindow=window.open(url,'name',property);
	if (window.focus) {
		if (newwindow) {newwindow.focus();}
	}
}

function focusPopup () {
	if (newwindow) {
		newwindow.focus();
	}
}
