function popitup(url) {
	newwindow=window.open(url,'name','fullscreen=yes, scrollbars=auto,resizable="yes"');
	if (window.focus) {newwindow.focus()}
	newwindow.moveTo(0,0);
	newwindow.resizeTo(screen.availWidth,screen.availHeight);
	return false;
}
