function pics(img,ref)
{
	document.images[img].src = ref;
}

function openwin(img,w,h,title)
{
	window_w = w + 50;
	window_h = h + 50;
	var hWnd;
	if(hWnd!=null) hWnd.close();
	hWnd=window.open(img,"","toolbar=no,location=no,directories=no,resizable=no, scrollbars=yes");//, left=100,top=100,width="+window_w+",height="+window_h
	hWnd.document.open();
	hWnd.document.write("<html><head><title>"+title+"</title></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor=#000000>");
	hWnd.document.write("<table border=0 width="+window_w+" height="+window_h+" cellpadding=0 cellspacing=0 ALIGN=center>");
	hWnd.document.write("<tr align=center valign=middle><td>");
	hWnd.document.write("<img src=\""+img+"\" width="+w+" height="+h+">");// style='border: 4px solid #EFA510;'>");
	hWnd.document.write("</td></tr></table></body></html>");
	hWnd.document.close();
}
