function poptastic(url,height,width)
{
    var newwindow;
	newwindow=window.open(url,'name',"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height="+height+",width="+width);
	if (window.focus) {newwindow.focus()}
}
