<!--
function popup(url) {
	newwindow=window.open(url,'name','height=600,width=400,scrollbars=yes ');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popup_wDimension(url, h, w ) {
	newwindow=window.open(url,"name","height="+h +",width="+w+",scrollbars=yes");
	if (window.focus) {newwindow.focus()}
	return false;
}

// -->