
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////Digital Currents - Art in the Electronic Age : Master JavaScript 'header' file
////////////////////////These functions launch content.
////////////////////////for the site.
////////////////////////Author: Jacques Tege, Jr. / Motion Theory LLC
////////////////////////Creation date: 03-12-2004

//DIGITAL
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


function openCurrentsCredits(){
	
	var headerHeight = 27, holdLineHeight = 1, bufferHeight = 60, contentHeight = 450, closebtnHeight = 25, extraHeight = 35;
	var leftMargin = 60, contentWidth = 325, rightMargin = 30, bottomMargin = 25;
	var winheight = headerHeight + ( holdLineHeight * 2 ) + bufferHeight + contentHeight + closebtnHeight + extraHeight ; //+ bottomMargin
	var winwidth = leftMargin + contentWidth + rightMargin;

	crdtWin = window.open('', 'imageWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+winwidth+',height='+winheight);
	//HTMLstring = 'hello';
	HTMLstring = '<html><head><title>Currents Credits</title></head>' +
				'<BODY bgcolor="#000000" topmargin=0 bottommargin=0 marginwidth=0 marginheight=0 rightmargin=0 leftmargin=0 alink="#bbbbbb" vlink="#bbbbbb" link="#bbbbbb">' +
				'<TABLE ALIGN=right BORDER=0 CELLSPACING=0 CELLPADDING=0 cols=3>' +
				'<TR><TD BGCOLOR="#000000" BORDERCOLOR=Black ALIGN=right height=27 colspan=3>' +
				'<IMG SRC="../liveContent/images/dc_header.gif" align=right ALT="Digital Currents" >' +
				'</TD></TR>' +
				'<TR><TD BGCOLOR="#bb5500" BORDERCOLOR=Black ALIGN=right height=1  colspan=3></TD></TR>' +
				'<TR><TD BGCOLOR=Black BORDERCOLOR=Black ALIGN=right height=' + bufferHeight + ' colspan=3></TD></TR>' +
				'<TR>' +
				'<TD BGCOLOR="Black" BORDERCOLOR=Black ALIGN=right height=' + contentHeight + ' colspan=1 width=' + leftMargin + '></TD>' +
				'<TD BGCOLOR="Black" BORDERCOLOR=Black ALIGN=right VALIGN=top height=' + contentHeight + ' colspan=1 width=' + contentWidth + '>' +
				'<FONT  size=2 face=sans-serif color="#bbbbbb"><FONT size=2><i><b>This site has been developed through cooperation between Routledge Publishing and Pratt Institute.</b></i></font><br><br>' +
				'<FONT size=3><i><b><u>Website Credits</u></b></i></font></b><br><br>' +
				'<i><font color="#bb5500">Concept and  Design</font></i><br><b>Margot Lovejoy</b><br><br>' +
				'<i><font color="#bb5500">Interface Design and Site Architecture & Development</font></i><br><b><a href="mailto:jtege@acm.org">- Jacques T&eacute;g&eacute;, Jr.</a></b><br><br>' +
				'<i><font color="#bb5500">Project Supervision</font></i><br><b>Miroslaw Rogala, Ph.D., Chair (2002-04),</b><br>' +
				'<font color="#aaaaaa">Computer Graphics and Interactive Media,<br>Pratt Institute, Brooklyn, New York<br><br><br>' +
				'<FONT size=2>Special thanks to Daniel Webster for technical consulting, Seth Founds, Sharmista Jesson and Ellery Matthews for technical support, Rick Barry (Interim Chair Pratt CGIM, 2004) and Claudia Herbst for academic support, and Pratt Institute.</font>' +
				'</font></TD>' +
				'<TD BGCOLOR="Black" BORDERCOLOR=Black ALIGN=right height=' + contentHeight + ' colspan=1 width=' + rightMargin + '></TD>' +
				'</TR>' +
				/*'<TR><TD BGCOLOR=Red BORDERCOLOR=Black ALIGN=right height=' + bottomMargin + ' colspan=3></TD></TR>' +*/
				'<TR><TD BGCOLOR="#bb5500" BORDERCOLOR=Black ALIGN=right height=1  colspan=3></TD></TR>' +
				'<TR><TD BGCOLOR="#0f0500" BORDERCOLOR=Black VALIGN=bottom ALIGN=right height=' + closebtnHeight + '   colspan=3>' +
				'<a href="Javascript:self.close()">' +
				'<IMG SRC="../liveContent/images/imageclose.gif" align=right ALT="close" border=0 class=".">' +
				'</a>' +
				'</TD></TR>' +
				'</TABLE>' +
				'</BODY></HTML>' +
				'<script language=javaScript> self.resizeTo(' + winwidth + ', ' + winheight + ')</script>';
 	
	crdtWin.document.write(HTMLstring);
	crdtWin.document.close();
}


