//FUNCTION POPTASTIC: CREATES NEW WINDOWS

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=450,width=650,left=50, top=20,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
//  End function poptastic(url)
