var newwindow;
var newwindow2;

function popwindow(url, height, width) {
	newwindow=window.open(url,'name','height='+height+',width='+width+'');
	if (window.focus) {newwindow.focus()}
	}

function popwindow2(url, height, width) {
	newwindow2=window.open(url,'name2','height='+height+',width='+width+'');
	if (window.focus) {newwindow2.focus()}
	}
