var newwindow;

function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=800,left=0,top=0,resizable=yes,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

function show(url)
{
	newwindow=window.open(url,'name','left=0,top=0,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}