focus();

function popWin(dis,h,w) {
	window.open(dis.href,dis.target,"height=" + h + ",width=" + w + ",top=" + (screen.height-h)/2 + ",left=" + (screen.width-w)/2 + ",scrollbars=1, toolbar=0").focus();
	return false;
}

function dismiss(wname) {
    if (window.name == wname) window.close();
    else history.go(-1);
}