//POP UP WINDOWS;
var newwindow;
function poptastic(url,winwidth,winheight,showstatus,showscrollbar)
{
	newwindow=window.open(url,'name','height=' + winheight + ',width=' + winwidth + ',status=' + showstatus + ',scrollbars=' + showscrollbar + '');
	if (window.focus) {newwindow.focus()}
}