var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=350,width=800,resizable=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}	

function poptastic2(url)
{
	newwindow=window.open(url,'name','height=650,width=800,resizable=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}	
