function smallWindow(href, width, height)
{
href = "images/" + href;
smallWindow = window.open(href, "popup", "width=" + width +",height=" + height + ",resizable=1,scrollbars");
smallWindow.focus();
}


