<!--
function popitup(url, w1, h1)
{

var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome' ) > -1;
newwindow=window.open(url,'name','height=350,width =350,screenX=350,screenY=100,scrollbars=no');
if (is_chrome) {newwindow.parent.blur();}
newwindow.focus();

}
//-->

