<!-- BEGIN POPUP JS from bit.ly/gF8Hu -->
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=250,width=400,left=600,top=200');
	if (window.focus) {newwindow.focus()}
}
