var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=525,width=650,top=50,left=50');
if (window.focus) {newwindow.focus()}
}
function poptastic2(url)
{
newwindow=window.open(url,'name','height=700,width=500,top=50,left=50');
if (window.focus) {newwindow.focus()}
}
