function openWindow (doc, hrdoc, win, width, height, title)
{
	var adjheight = height + 20;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - adjheight) / 2;
	newWin = window.open ('', win, 'resizable=0,toolbar=0,scrollbars=0,menubar=0,width=' + width + ',height=' + adjheight + ',top=' + wint + ',left=' + winl );
	newWin.document.writeln ('<HTML><TITLE>' + title + '</TITLE><STYLE><!-- body {font : 7pt Verdana; color : #FFFFFF; background-color : #000000;} img {border: none;} a:link {color : #AAAAAA; text-decoration : none;} a:visited {color : #888888; text-decoration : none;} a:active {color : #FFFFFF; text-decoration : none;} a:hover {color : #FFFFFF; background : #ED2024; text-decoration : none;} --></STYLE><BODY topmargin=10 bottommargin=10 leftmargin=10 rightmargin=10>');
	newWin.document.writeln ('<IMG SRC="' + doc + '"><BR><BR><CENTER><A HREF="' + hrdoc + '"><B>Download High Resolution Version</B></A></CENTER></BODY></HTML>');
	newWin.document.close();
}

function openFlier (doc, win, width, height, title)
{
	var adjheight = height;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - adjheight) / 2;
	newWin = window.open ('', win, 'resizable=0,toolbar=0,scrollbars=0,menubar=0,width=' + width + ',height=' + adjheight + ',top=' + wint + ',left=' + winl );
	newWin.document.writeln ('<HTML><TITLE>' + title + '</TITLE><STYLE><!-- body {font : 7pt Verdana; color : #FFFFFF; background-color : #000000;} img {border: none;} a:link {color : #AAAAAA; text-decoration : none;} a:visited {color : #888888; text-decoration : none;} a:active {color : #FFFFFF; text-decoration : none;} a:hover {color : #FFFFFF; background : #ED2024; text-decoration : none;} --></STYLE><BODY topmargin=10 bottommargin=10 leftmargin=10 rightmargin=10>');
	newWin.document.writeln ('<IMG SRC="' + doc + '"></BODY></HTML>');
	newWin.document.close();
}
