/* 
 Popup 
*/ 
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=260,width=310,left=500,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}
  