var COOKIENAME="PATA";

function printselected() {

	temp = getCookie(COOKIENAME);

	temp2 = ""

	if (temp != null && temp != "") {

		var selected = temp.split('?');

		for (i=0;i<selected.length;i++) {

			if (i!=0) {

				temp2 += "\n";

			}

			temp2 += selected[i];

		}

	}



	this.document.open();

	msg = "<textarea NAME=\"ITEM\" rows=5 cols=25 WRAP=VIRTUAL >";

	msg += temp2;

	msg += "</textarea>";

	this.document.writeln(msg);

	this.document.close();

}
function printselected1() {

	temp = getCookie(COOKIENAME);

	temp2 = ""

	if (temp != null && temp != "") {

		var selected = temp.split('?');

		for (i=0;i<selected.length;i++) {

			if (i!=0) {

				temp2 += "\n";

			}

			temp2 += selected[i];

		}

	}



	this.document.open();

	msg = "<textarea NAME=\"ITEM1\" rows=5 cols=13 WRAP=VIRTUAL >";

	msg += temp2;

	msg += "</textarea>";

	this.document.writeln(msg);

	this.document.close();

}