
function onmouseshowimg(img)
{ 
var x=event.clientX;
var y=event.clientY;
if (x >350) {x=x-320}
else {x=x+110}
if (y >350) {y=y-320}
else {y=y+120}

return window.open(img.src,'_blank','dependent,'+'top='+(y)+',left='+(x)+',width=300,height=300','toolbar=no','location=no','directories=no') 
}
function onclickshowimg(img)
{
window.open(img.src,'_blank','top=10,left=10, width=800,height=600')
}
function onmouseoutimg(imgsubwin)
{
imgsubwin.close()
}
