/*********************************
************ windows *************
**********************************/

function OpenNewWindow()
{
    var newWindow = window.open('','mywindow','width=700,height=600,scrollbars=yes');
    newWindow.document.writeln("<html>");
	newWindow.document.writeln("<head>");
	newWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\">");
	newWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/cp_fluidoStyle.css\">");
	newWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/editorStyle.css\">");
	newWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/profileStyle.css\">");
	newWindow.document.writeln("</head>");
    newWindow.document.writeln("<body style='margin: 10px; text-align:center;'>");
	var cp = document.getElementById('cpText');
	var admin = document.getElementById('adminText');

	if (admin)
	{
    	newWindow.document.writeln(admin.value);
	}
	else
	{
		newWindow.document.writeln(cp.value);
	}

	newWindow.document.writeln("<form style=\"margin-bottom:0\"><input type=\"button\" id=\"submit\" class=\"submit\" value=\"Chiudi\" onClick=\"window.close()\"></form>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
}

/*********************************
************ windows *************
**********************************/
