function popimg( src ){
	var body = document.getElementsByTagName( 'body' ).item( 0 );
	var a = document.createElement( 'a' );
	a.setAttribute( 'href', 'javascript: void 0;');
	a.setAttribute( 'onclick', 'this.parentNode.removeChild( this )');
	a.setAttribute( 'class', 'popimg' );
	var img = document.createElement( 'img' );
	img.setAttribute( 'src', src );
	a.appendChild( img );
	body.appendChild( a );
}
