// JavaScript Document

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