
function imagePop(name,image,title,info)
	{
	
	var new_win = window.open("","wind","resizeable=yes,width=10,height=10,screeny=200,screenx=200,left=200,top=200");
	new_win.document.close();
	new_win.document.open();
	new_win.document.writeln("<html><head><title>" + title +"</title></head>");
	if(new_win)
		{
		
		new_win.document.writeln("<script>var loc = 'new_index.asp?act=contact'; function sizeWin() {window.resizeTo(document.image1.width+50,document.image1.height+120);} ;</script>");
		new_win.document.writeln("<style>");
		new_win.document.writeln("a:visited {color:navy;text-decoration:none;}");
		new_win.document.writeln("a:hover {color:orange;text-decoration:none;}");
		new_win.document.writeln("a:link {color:navy;text-decoration:none;}");
		
		new_win.document.writeln(".name {font-family:arial;color:gray;font-size:12;font-weight:bold;}");
		new_win.document.writeln(".title {font-family:arial;color:gray;font-size:12;font-style:italic;}");
		new_win.document.writeln(".info {font-family:arial;color:silver;font-weight:lighter;font-size:10; } ");
		new_win.document.writeln("</style>");
		new_win.document.writeln("<body><div align='center'><img name='image1' border=0 onload='sizeWin()' src='images/" + image +"'><br><br><span class='name'>" + name + "</span><br><span class='title'>" + title + "</span><br><span class='info'>(" + info + ")</span></div></body><script>window.focus();</script></html>");
		}
	}