//Open Window and populate it
function picture(name){

	imagename=""
	imagename = name
	stadd=window.open("","","height=515,width=660,top=10,left=90")
	setTimeout('towindow()',500)
}

function towindow() {
	doc=stadd.document;
		doc.open('text/html');
		doc.write('<HTML><TITLE>Enlarged View<\/TITLE>');
		doc.write('<HEAD><\/HEAD><BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><TABLE ALIGN=center><TR ALIGN=center><TD><IMG SRC="images/projects/'+ imagename +'.jpg" width=640 height=480><\/TD><\/TR>');
		doc.write('<TR ALIGN=center><TD><a href="#" onClick="self.close()"><font class="footerlink"><IMG SRC = "images/closewindow.gif" border=0></font></a><\/TD><\/TR><\/TABLE><\/BODY><\/HTML>');
		doc.close();
}


