function openPopupCustom(url, windowname, height, width, scroll)
{
var popup = window.open(url, windowname, "toolbar=no, status=yes, scrollbars="+scroll+", menubar=no, locationbar=no, top=35, left=20, width="+width+", height="+height+", resizable=yes");
popup.focus();
}