// JavaScript Document

function showbig(img, txt){

var w = Math.min(1050, screen.width-10);
var h = Math.min(850, screen.height-60);
//var pos_l = Math.floor((screen.width - w) / 2);
//var pos_t = Math.floor((screen.height - h) / 2);
var pos_l = 0;
var pos_t = 0;

WinDetail =  window.open('showdetail.php?id='+img+'&note='+txt, 'detail', 'alwaysRaised=yes,dependent=yes,location=no,menubar=no,resizeable=no,status=no,titlebar=no,toolbar=no,scrollbars=yes,height='+h+',width='+w+',left='+pos_l+',top='+pos_t);

}