function img_open(img_src, w, h, title) {
  var win = window.open(img_src, "", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width="+w+",height="+h+"")
  win.moveTo((win.screen.availWidth/2) - (w/2), (win.screen.availHeight/2) - (h/2))
  win.document.open()
  win.document.write(
'<html><head><title>'+title+'</title></head>'+
'<body bgcolor="#000000" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">'+
'<a href="javascript:window.close()"><img border="0" alt="'+title+'" src="'+img_src+'" width="'+w+'" height="'+h+'" />'+
'</body></html>')
  win.document.close()
  return false
}
function details(x, y, w, h, url) {
  var win = window.open(url, "_blank", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,titlebar=0,channelmode=0,left="+x+",top="+y+",width="+w+",height="+h)
}

