// aimsPrint.js
/*
*  JavaScript template file for ArcIMS HTML Viewer
*		dependent on aimsXML.js, ArcIMSparam.js, aimsCommon.js, aimsMap.js,
*		aimsLayers.js, aimsDHTML.js
*		aimsClick.js, aimsNavigation.js,
*		aimsLegend.js
*/

aimsPrintPresent=true;

var printTitle = titleList[4];
var printMapURL="";
var printOVURL="";
var printLegURL="";

var legVis2=false;

/*
***************************************************************************************

Print functions

***************************************************************************************
*/


// display print form
function printIt() {
	hideLayer("measureBox");
	if (useTextFrame) {
		parent.TextFrame.document.location = "printform.htm";
	} else {
		var Win1 = open("printform.htm","PrintFormWindow","width=575,height=150,scrollbars=yes,resizable=yes");
	}
}

// create web page for printing
	// first get Map
function getPrintMap(title) {
	showRetrieveMap();
	printTitle=title;
	var tempWidth = iWidth;
	var tempHeight = iHeight;
	iWidth=500;
	iHeight=500;
	legVis2=legendVisible;
	if (aimsLegendPresent) legendVisible=true;
	var theString = writeXML();
	iWidth=tempWidth;
	iHeight = tempHeight;
	legendVisible = legVis2;
	sendToServer(imsURL,theString,101);
	tempWidth=null;
	tempHeight=null;
	theString=null;
}
// second, get OVMap
function getPrintOV() {
	var tempWidth = i2Width;
	var tempHeight = i2Height;
	i2Width=190;
	i2Height=150;
	var tempDraw=drawOVExtentBox;
	drawOVExtentBox=true;
	var theString = writeOVXML();
	drawOVExtentBox=tempDraw;
	i2Width=tempWidth;
	i2Height = tempHeight;
	sendToServer(imsOVURL,theString,102);
	tempWidth=null;
	tempHeight=null;
	theString=null;
}
// third, get Legend
function getPrintLegend() {
	//  waiting for Legend tags
	if (printLegURL=="") printLegURL = "images/nolegend.gif";
	writePrintPage();
}
// fourth, write the web page
function writePrintPage() {
	var Win1 = open("","PrintPage");
	//Win1.document.open();


	Win1.document.writeln('<html><meta http-equiv="Content-Type" content="text/html; charset=' + charSet + '"><head>');
	Win1.document.writeln('	<title>' + titleList[5] + '</title>');
	Win1.document.writeln('</head>');
	Win1.document.writeln('<body BGCOLOR="White" TEXT="Black" LEFTMARGIN=0 TOPMARGIN=0>');
	Win1.document.writeln('<FONT face="Arial, Helvetica, sans-serif">');
	Win1.document.writeln('<TABLE WIDTH="950" BORDER="1" FRAME="BOX" CELLSPACING="0" CELLPADDING="0" NOWRAP>');
	Win1.document.writeln('	<TR HEIGHT="60">');
	Win1.document.writeln('		<TD COLSPAN="4" ALIGN="middle" VALIGN="center"><B><FONT face="Arial, Helvetica, sans-serif" SIZE="6">' + printTitle + '</FONT></B></TD>');
	Win1.document.writeln('	</TR>');
	Win1.document.writeln(' <TR>');
	if (hasOVMap) {
        Win1.document.writeln('     <TD ROWSPAN="3" HEIGHT="150" ALIGN="CENTER" VALIGN="BOTTOM">');
        Win1.document.writeln('<IMG SRC="' + printOVURL + '" WIDTH=200 HEIGHT=180 HSPACE=10 VSPACE=10 BORDER=0 ALT=""> ');
        Win1.document.writeln(' <br><br><br><br><br><br><br><br><br><br><br><br><br><br><hr 100%> ');
        Win1.document.writeln(' <IMG SRC="http://www.webgis-schule.de/images/gutenberg.jpg" alt="Gutenberg"><br><br>');
        Win1.document.writeln(' <FONT face="Arial, Helvetica, sans-serif" SIZE="-2">Dr. Dirk Schäfer<br>Geographischens Institut<br>Johannes Gutenberg-Universität Mainz<br>(c) Copyright 2005<br>http://www.webgis-schule.de</FONT> ');
        Win1.document.writeln('     </TD>');
    }
    Win1.document.write('       <TD WIDTH="600" HEIGHT="580"');
    if (hasOVMap) Win1.document.write(' ROWSPAN="3"');
    Win1.document.writeln('>');
    Win1.document.writeln('         <IMG SRC="' + printMapURL + '" WIDTH=550 HEIGHT=550 ALIGN="center" VALIGN="middle" HSPACE=10 VSPACE=10 BORDER=0 ALT="">');
    Win1.document.writeln('     </TD>');
    Win1.document.writeln('		<TD ALIGN="CENTER" VALIGN="TOP" ROWSPAN="3">');
	Win1.document.writeln('			<IMG SRC="' + printLegURL + '" HSPACE=0 VSPACE=0 BORDER=0 ALT="">');
	Win1.document.writeln('		</TD>');
    Win1.document.writeln(' </TR>');

	Win1.document.writeln('</TABLE>');
	Win1.document.writeln('</FONT>');
	//Win1.document.writeln('</body></html>');
	Win1.document.close();
	legendVisible=legVis2;
	Win1=null;
	hideRetrieveMap();
}
