// JavaScript Document
var newwindow;
function poptastic(url)
{
	var h=600,w=650;
	newwindow=window.open(url,'name','left='+screen.availWidth/2-(w/2)+',top='+screen.availHeight/2-(h/2)+',height='+h+',width='+w+',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
