
function sendemail(n) {
	WindowOptions="width=500,height=520,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	url = "/parts/formemail.php?gn="+n+"&l="+document.dir4.lan.value;
	op=window.open(url, "emailf", WindowOptions);
	op.focus();
}

function ShowGraph2(GraphURL, GraphWidth, GraphHeight) {

	WindowOptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	GraphWindow=window.open(GraphURL, "grafica", WindowOptions + ',width=' + GraphWidth + ',height=' + GraphHeight);
	GraphWindow.focus();
}

function ShowGraph(GraphURL, GraphWidth, GraphHeight) {
	WindowOptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	GraphWindow=window.open("", "", WindowOptions + ',width=' + GraphWidth + ',height=' + GraphHeight);
	GraphWindow.focus();
	GraphWindow.document.open();
	with(GraphWindow)
	{
		document.write("<html><head>");
		document.write("<title>Show Ranking Graph</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GraphURL +"\" title=\"Click to close\">");
		document.write("</body></html>");
	}
}

