function open_img(URL,w,h)
{
var smallWindow=window.open(URL,"_blank","width="+w+",height="+h+",menubar=no,toolbar=no,location=no,directoties=no,status=no,resizable=no,scrollbars=no");
if (smallWindow != null && smallWindow.opener == null) smallWindow.opener=window;
smallWindow.focus();
}


function Open_html(URL,w,h)
{
var smallWindow=window.open(URL,"_blank","width="+w+",height="+h+",menubar=no,toolbar=no,location=no,directoties=no,status=no,resizable=no,scrollbars=no");
if (smallWindow != null && smallWindow.opener == null) smallWindow.opener=window;
smallWindow.focus();
}