

var nwind="";
function nw(u,w,h) {
if (nwind.name == null)
{
wind = window.open(u,"showwindow",'width='+w+',height='+h+',toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no');
}
}

// Enlarge picture updated by Ramachandran S @arrowebs.com
// December 22, 2002
function picEnlarge(imname) {
   oPic = new Image();
   fname = '"' + imname + '"'
   oPic.onload = dispImg;
   oPic.src = (imname);
}

function dispImg() {
	picWidth = parseFloat(oPic.width);
	picHeight = parseFloat(oPic.height);
	features = "toolbar=no,status=no,menubar=no,directories=no,resizable=yes,width=" + picWidth + ",height=" + picHeight;
	if (window.picWin && !picWin.closed){
        picWin.window.resizeTo( picWidth, picHeight )
    } else {
		picWin = window.open("","", features);
    }
	picWin.document.open("text/html","replace");
	picWin.document.write('<HTML><HEAD><TITLE> - :: enlarged View :: </TITLE></HEAD><body topmargin="0" leftmargin="0">\n<div style="position:absolute;top:0;left:0;"><img src=' + fname + ' border="0" alt="Enlarged View of Image"></div></BODY></HTML>');
	picWin.document.close();
	picWin.focus();
}