function openWindow(href,width,height)
{
    popup = window.open(href, "popupa", "width="+width+",height="+height+",left=500,top=200,scrollbars=yes,resizable=yes");
    popup.focus();
}