/* Opens a Brochure/testimonial
 * filename - name of brochure file
  * description - name of game
 */

function OpenBrochure (filename, description)
{
	pamplets = window.open('', "Brochure", "toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, copyhistory=no, width=800, height=600");
	
	//Writing the <HEAD>
	pamplets.document.write("<HTML><HEAD><TITLE>");
	pamplets.document.write(description);
	pamplets.document.write("</TITLE>");
	pamplets.document.write("<LINK TITLE='Main-Style' REL='stylesheet' HREF='Gstyle.css' TYPE='text/css'>");
	pamplets.document.write("</HEAD>");

	//Writing the <BODY>
	pamplets.document.write("<BODY>");
	pamplets.document.write("<P STYLE='text-align: center;'><A HREF='javascript:window.close()'>Close Window</A></P>");
	pamplets.document.write("<P STYLE='text-align: center;'><IMG SRC='");
	pamplets.document.write(filename);
	pamplets.document.write("' ALT='");
	pamplets.document.write(description);
	pamplets.document.write("' WIDTH=768 HEIGHT=1104></P>");
	pamplets.document.write("<P STYLE='text-align: center;'><A HREF='javascript:window.close()'>Close Window</A></P>");
	pamplets.document.write("</BODY></HTML>");
}

function OpenTestimonial (filename, description, width, height)
{
	pamplets = window.open('blank.html', "Letters", 'toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, copyhistory=no, width=650, height=600');
	
	//Writing the <HEAD>
	pamplets.document.write("<HTML><HEAD><TITLE>");
	pamplets.document.write(description);
	pamplets.document.write("</TITLE>");
	pamplets.document.write("<LINK TITLE='Main-Style' REL='stylesheet' HREF='Gstyle.css' TYPE='text/css'>");
	pamplets.document.write("</HEAD>");

	//Writing the <BODY>
	pamplets.document.write("<BODY>");
	pamplets.document.write("<P STYLE='text-align: center;'><A HREF='javascript:window.close()'>Close Window</A></P>");
	pamplets.document.write("<P STYLE='text-align: center;'><IMG SRC='");
	pamplets.document.write(filename);
	pamplets.document.write("' ALT='");
	pamplets.document.write(description);
	pamplets.document.write("' WIDTH=");
	pamplets.document.write(width);
	pamplets.document.write(" HEIGHT=");
	pamplets.document.write(height);
	pamplets.document.write("></P>");
	pamplets.document.write("<P STYLE='text-align: center;'><A HREF='javascript:window.close()'>Close Window</A></P>");
	pamplets.document.write("</BODY></HTML>");
}
