﻿// pop up new resized window 
function popitup(url,width,height) {
	newwindow=window.open(url,'name','width='+width+',height='+height+',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}