var swapArray = new Array();function printOn() {	document.getElementById("optionPrintButton").innerHTML = "<a href='#' onClick='printOn();' onMouseOut='MM_swapImgRestore();' onMouseOver='MM_swapImage(\"PFbutton\",\"\",\"../images/PFbuttonOn.gif\",1);'><img src='../images/PFbuttonOff.gif' alt='Print With Images' name='PFbutton' width='80' height='25' vspace='0' border='0'><\/a> <img src='../images/PFbuttonNOPICon.gif' alt='Print Without Images' name='PFbuttonNOPICon' width='80' height='25' vspace='0' border='0' onClick='printOff();'>";	for(var i=1; i<=this.optionPrintCount; i++){		//alert(i +": "+this.swapArray[i]);		document.getElementById("optionPrint"+ i).innerHTML = this.swapArray[i];	}	print();}function printOff() {	document.getElementById("optionPrintButton").innerHTML = "<img src='../images/PFbuttonON.gif' alt='Print With Images' name='PFbuttonOn' width='80' height='25' vspace='0' border='0' onClick='printOn();'> <a href='#' onClick='printOff();' onMouseOut='MM_swapImgRestore();' onMouseOver='MM_swapImage(\"PFbutton\",\"\",\"../images/PFbuttonNOPICon.gif\",1);'><img src='../images/PFbuttonNOPICoff.gif' alt='Print Without Images' name='PFbutton' width='80' height='25' vspace='0' border='0'><\/a>";	for(var i=1; i<=this.optionPrintCount; i++){		document.getElementById("optionPrint"+ i).innerHTML = "";	}	print();}function setUpOptionPrint(){	for(i=1; i<=this.optionPrintCount; i++){		this.swapArray[i] = document.getElementById("optionPrint"+ i).innerHTML;	}}function showPrintInstructions(tempEvent){	var target = tempEvent.currentTarget; 	var x = new String(target.x + 40);	var y = new String(target.y + 40);	document.getElementById("div1").style.left = x + "px";	document.getElementById("div1").style.top = y + "px";	document.getElementById("div1").style.visibility = "visible";}function hidePrintInstructions(tempEvent){	document.getElementById("div1").style.visibility = "hidden";}