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