function baloon(pipe, immagine, msg) {

	document.write('<p><table cellpadding=0 cellspacing=0 border=0><tr>');
	if (pipe == 'left') {
		document.write('<td valign=center><img src="' + immagine + '" border="0" alt=""></td>');
	}
	document.write('<td valign=top><table cellpadding=0 cellspacing=0 border=0>');
	document.write('<tr><td height=6 align=right><img src="pictures/c1.gif" width="6" height="6" border="0" alt=""></td>');
	document.write('<td background="pictures/lup.gif"></td>');
	document.write('<td align=left><img src="pictures/c2.gif" width="6" height="6" border="0" alt=""></td>');

	if (pipe == 'left') {
		document.write('<tr><td background="pictures/lpsx.gif"><img src="pictures/pipesx.gif" width="31" height="17" border="0" alt=""></td>');
	} else {
		document.write('<tr><td background="pictures/lsx.gif"></td>');
	}
	document.write('<td class=baloon bgcolor=white>' + msg + '</td>');
	if (pipe == 'right') {
		document.write('<td background="pictures/lpdx.gif"><img src="pictures/pipedx.gif" width="31" height="17" border="0" alt=""></td>');
	} else {
		document.write('<td background="pictures/ldx.gif"></td>');
	}

	document.write('<tr height=6><td align=right><img src="pictures/c3.gif" width="6" height="6" border="0" alt=""></td>');
	document.write('    <td background="pictures/ldn.gif"></td>');
	document.write('    <td align=left><img src="pictures/c4.gif" width="6" height="6" border="0" alt=""></td>');
	document.write('<tr><td></td></table>');
	if (pipe == 'right') {
		document.write('<td valign=center><img src="' + immagine + '" border="0" alt=""></td>');
	}
	document.write('</table>');

}
function openPicture(immagine,width,height) {

	height=height+22;
	width=width+22;

	var cgWin;
	cgWin = window.open('','','toolbar=0,location=0, directories=0,status=0,scrollbars=0,resizable=1,copyhistory=0,width=' + width + ',height=' + height + ',left=' + (screen.availWidth - width) / 2 + ',top=' + (screen.availHeight - height) / 2 + '');
	cgWin.focus();
	cgWin.document.write("<html><head><title>" + document.title + "</title>");
	cgWin.document.write("<body bgcolor=#f0f0f0 marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>");
	cgWin.document.write("<div align=center><img src='" + immagine + "' border=1 vspace=10>");
	cgWin.document.write("</html>");

}
function checkparent() {

	if (window.name == '') {
		var loc = document.location.href;
		document.location.href = 'index.html';
	}

}
function loadpage() {

	var loc = parent.document.location.href;
	var ipos = loc.indexOf("?page=");
	if (ipos > 0) {
		parent.document.frames['page'].document.location.href = loc.substr(ipos+6);
	} else {
		parent.document.frames['page'].document.location.href = 'main.html';
	}

}