var newwindow;

function poptastic(url,name,height,width){
	var options="height="+height+",width="+width+",scrollbars=yes,location=no,toolbar=no,menubar=no,resizable=yes,top=10,left=10";
	newwindow=window.open(url,name,options);
	if (window.focus) {newwindow.focus()}
}


