function openImage(imagename,ext,w,h){
	
	var newWindow = open('',w+h,'width='+w+',height='+h+',scrollbars=no');

	newWindow.document.writeln('<html>\n');
	newWindow.document.writeln('<head>\n');
	newWindow.document.writeln('<title>Second Generation</title>\n');
	newWindow.document.writeln('</head>\n');
	newWindow.document.writeln('<body bgcolor="#FFFFFF" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">\n');
	newWindow.document.writeln('<div align="center">\n');
	newWindow.document.writeln('<img src="http://www.2g.org/home/images/'+imagename+'.'+ext+'" border="0">\n');
	newWindow.document.writeln('</div>\n');
	newWindow.document.writeln('</body>\n');
	newWindow.document.writeln('</html>\n');
	
	newWindow.document.close();
	newWindow.focus();
}