// JavaScript Document
var newwindow;
function poptastic(url,w,h)
{
	newwindow=window.open(url,'name','resizable=yes,width=' + w + ',height=' + h);
	if (window.focus) {newwindow.focus()}
}