function pics(img,ref)
{
	document.images[img].src = ref;
}

function openwin(img,w,h,title)
{
 var hWnd;
 if(hWnd!=null) hWnd.close();
 hWnd=window.open(img,"","toolbar=no,location=no,directories=no,resizable=no,left=100,top=100,width="+w+",height="+h);
 hWnd.document.open();
 hWnd.document.write("<html><head><title>"+title+"</title></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
 hWnd.document.write("<img src=\""+img+"\" width="+w+" height="+h+">");
 hWnd.document.write("</body></html>");
 hWnd.document.close();
}

function openwin_text(url , w , h)
{
	window.open(url,"","toolbar=no,location=no,directories=no,resizable=no,scrollbars=yes,width="+w+",height="+h);
}

function pics( img , url ) {

		document.images[img].src = url;

}
function redirect( uri ) {
	document.location.href=uri;
}
function ShowDiv( id ) {
	var layer = document.getElementById(id);
		layer.style.display = "block"; 
}

function HideDiv( id ) {
	var layer = document.getElementById(id);
		layer.style.display = "none"; 
}