// new window script ///////////////////////////////////////////////////////
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=290,width=400,left=40,top=120');
	if (window.focus) {newwindow.focus()}
}
